vars.tf 209 B

123456789
  1. variable "enabled" {
  2. description = "Set to false to do nothing"
  3. type = bool
  4. default = true
  5. }
  6. variable "name" { type = string }
  7. variable "ip_addresses" { type = list }
  8. variable "dns_info" { type = map }