vars.tf 528 B

1234567891011121314151617
  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. # inherited variables
  10. variable tags { type = map }
  11. variable dns_info { type = map }
  12. variable standard_tags { type = map }
  13. variable aws_account_id { type = string }
  14. variable aws_partition { type = string }
  15. variable account_list { type = list }