Compare commits

...

2 commits

Author SHA1 Message Date
96154a0370 fix null variable 2023-04-08 18:17:34 +02:00
76d626f2a4 support fixed address 2023-04-07 18:06:53 +02:00
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 = ""
}