support fixed address

This commit is contained in:
Pim Kunis 2023-04-07 18:06:53 +02:00
parent 6c3cdeeca5
commit 76d626f2a4
2 changed files with 6 additions and 0 deletions

1
debian/main.tf vendored
View file

@ -24,4 +24,5 @@ module "tf_debian_vm" {
ca_host = coalesce(var.ca_host, module.invariants.ca_host)
memory = var.memory
data_disk = var.data_disk
fixed_address = var.fixed_address
}

5
debian/variables.tf vendored
View file

@ -56,3 +56,8 @@ variable "data_disk" {
type = string
default = null
}
variable "fixed_address" {
type = string
default = null
}