env.hcl 769 B

1234567891011121314151617181920212223242526272829
  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. c2_accounts = {
  20. "aws-us-gov" = "738800754746" # mdr-test-c2-gov
  21. "aws" = "816914342178" # mdr-test-c2
  22. }
  23. environment_tags = {
  24. Environment = local.environment
  25. }
  26. }