add option for fixed DNS
This commit is contained in:
parent
c6d575b95c
commit
f6e18094e8
2 changed files with 6 additions and 0 deletions
1
debian/main.tf
vendored
1
debian/main.tf
vendored
|
@ -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
5
debian/variables.tf
vendored
|
@ -76,3 +76,8 @@ variable "mac" {
|
|||
type = string
|
||||
default = null
|
||||
}
|
||||
|
||||
variable "fixed_dns" {
|
||||
type = string
|
||||
default = ""
|
||||
}
|
||||
|
|
Reference in a new issue