vars.tf 704 B

12345678910111213141516171819202122
  1. variable "legacy_private_dns" {
  2. description = "A map of legacy hostnames to lists of IPs. To disable, just remove an entry."
  3. type = map(any)
  4. }
  5. variable "legacy_private_cname_dns" {
  6. description = "A map of legacy hostnames to lists of dns entries. To disable, just remove an entry."
  7. type = map(any)
  8. }
  9. variable "legacy_public_dns" {
  10. description = "A map of legacy hostnames to lists of IPs. To disable, just remove an entry."
  11. type = map(any)
  12. }
  13. variable "legacy_public_cname_dns" {
  14. description = "A map of legacy hostnames to lists of dns entries. To disable, just remove an entry."
  15. type = map(any)
  16. }
  17. # inherited variables
  18. variable "tags" { type = map(any) }