vars.tf 684 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
  4. }
  5. variable legacy_public_dns {
  6. description = "A map of legacy hostnames to lists of IPs. To disable, just remove an entry."
  7. type = map
  8. }
  9. variable legacy_public_cname_dns {
  10. description = "A map of legacy hostnames to lists of dns entries. To disable, just remove an entry."
  11. type = map
  12. }
  13. # inherited variables
  14. variable tags { type = map }
  15. variable dns_info { type = map }
  16. variable standard_tags { type = map }
  17. variable aws_account_id { type = string }
  18. variable aws_partition { type = string }
  19. variable account_list { type = list }