add option for fixed DNS

This commit is contained in:
Pim Kunis 2023-04-17 09:32:30 +02:00
parent c6d575b95c
commit f6e18094e8
2 changed files with 6 additions and 0 deletions

1
debian/main.tf vendored
View file

@ -28,4 +28,5 @@ module "tf_debian_vm" {
fixed_address = var.fixed_address
ansible_command = var.ansible_command
mac = var.mac
fixed_dns = var.fixed_dns
}

5
debian/variables.tf vendored
View file

@ -76,3 +76,8 @@ variable "mac" {
type = string
default = null
}
variable "fixed_dns" {
type = string
default = ""
}