vars.tf 258 B

12345678910
  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 "target_dns_name" { type = string }
  8. variable "target_zone_id" { type = string }
  9. variable "dns_info" { type = map }