vars.tf 841 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
  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
  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
  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
  16. }
  17. # inherited variables
  18. variable tags { type = map }
  19. variable dns_info { type = map }
  20. variable standard_tags { type = map }
  21. variable aws_account_id { type = string }
  22. variable aws_partition { type = string }
  23. variable account_list { type = list }