env.hcl 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. legacy_account = "527700175026"
  7. dns_info = {
  8. "private" = {
  9. zone = "pvt.xdrtest.accenturefederalcyber.com",
  10. zone_id = "Z08514662ZGG8BM81TKD5"
  11. }
  12. "reverse" = {
  13. zone = "10.in-addr.arpa"
  14. zone_id = "Z08479312XJFUS20YJUJO"
  15. }
  16. "public" = {
  17. zone = "xdrtest.accenturefederalcyber.com"
  18. zone_id = "Z01677392W0QM639KU2KC"
  19. },
  20. "legacy_private" = {
  21. zone = "msoc.defpoint.local"
  22. zone_id = "Z39OIGEKXXGJZ2"
  23. },
  24. "legacy_public" = {
  25. zone = "mdr-test.defpoint.com"
  26. zone_id = "Z3E22S3CIP0UCO"
  27. },
  28. "legacy_public_internal" = {
  29. # Weird name, but this is the 'private' copy of the public domain
  30. zone = "mdr-test.defpoint.com"
  31. zone_id = "Z13C1OOJMG0BJ7"
  32. },
  33. }
  34. c2_accounts = {
  35. "aws-us-gov" = "738800754746" # mdr-test-c2-gov
  36. "aws" = "816914342178" # mdr-test-c2
  37. }
  38. }