vars.tf 498 B

123456789101112131415
  1. variable "enabled" {
  2. description = "Set to false to do nothing"
  3. type = bool
  4. default = true
  5. }
  6. variable "reverse_enabled" {
  7. description = "Set to false to skip creation of reverse DNS. This can be useful when first creating resources when the private IP cannot be determined. 'enabled' must be true as well."
  8. type = bool
  9. default = true
  10. }
  11. variable "name" { type = string }
  12. variable "target_dns_names" { type = list(string) }
  13. variable "dns_info" { type = map(any) }