env.hcl 647 B

12345678910111213141516171819202122232425
  1. # Set common variables for the environment. This is automatically pulled in in the root terragrunt.hcl configuration to
  2. # feed forward to the child modules.
  3. locals {
  4. environment = "test"
  5. transit_gateway_account_name = "mdr-test-c2" # Which account has the transit gateway
  6. dns_private = {
  7. "id" = "Z39OIGEKXXGJZ2"
  8. "name" = "msoc.defpoint.local"
  9. }
  10. dns_private2 = {
  11. "id" = "Z13C1OOJMG0BJ7", #zone 2
  12. "name" = "mdr-test.defpoint.com"
  13. }
  14. dns_public = {
  15. "id" = "Z3E22S3CIP0UCO",
  16. "name" = "mdr-test.defpoint.com"
  17. }
  18. legacy_account = "527700175026"
  19. environment_tags = {
  20. Environment = local.environment
  21. }
  22. }