support fixed address
This commit is contained in:
parent
6c3cdeeca5
commit
76d626f2a4
2 changed files with 6 additions and 0 deletions
1
debian/main.tf
vendored
1
debian/main.tf
vendored
|
@ -24,4 +24,5 @@ module "tf_debian_vm" {
|
||||||
ca_host = coalesce(var.ca_host, module.invariants.ca_host)
|
ca_host = coalesce(var.ca_host, module.invariants.ca_host)
|
||||||
memory = var.memory
|
memory = var.memory
|
||||||
data_disk = var.data_disk
|
data_disk = var.data_disk
|
||||||
|
fixed_address = var.fixed_address
|
||||||
}
|
}
|
||||||
|
|
5
debian/variables.tf
vendored
5
debian/variables.tf
vendored
|
@ -56,3 +56,8 @@ variable "data_disk" {
|
||||||
type = string
|
type = string
|
||||||
default = null
|
default = null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
variable "fixed_address" {
|
||||||
|
type = string
|
||||||
|
default = null
|
||||||
|
}
|
||||||
|
|
Reference in a new issue