vars.tf 921 B

123456789101112131415161718192021222324252627
  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) }
  19. variable "dns_info" { type = map(any) }
  20. variable "standard_tags" { type = map(any) }
  21. variable "aws_account_id" { type = string }
  22. variable "aws_partition" { type = string }
  23. variable "account_list" { type = list(any) }