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 = "prod"
  5. transit_gateway_account_name = "mdr-prod-c2" # Which account has the transit gateway
  6. legacy_account = "477548533976"
  7. dns_info = {
  8. "private" = {
  9. zone = "pvt.xdr.accenturefederalcyber.com",
  10. zone_id = "Z08498911YSZW4A0XN4AG"
  11. }
  12. "reverse" = {
  13. zone = "10.in-addr.arpa"
  14. zone_id = "Z08395981DXDBY6CVJTW1"
  15. }
  16. "public" = {
  17. zone = "xdr.accenturefederalcyber.com"
  18. zone_id = "Z0083657A94URZM2TM87"
  19. },
  20. "legacy_private" = {
  21. zone = "msoc.defpoint.local"
  22. zone_id = "Z2JVOIKXZP64QP"
  23. },
  24. "legacy_public" = {
  25. zone = "mdr.defpoint.com"
  26. zone_id = "Z2HYR9YEZ4KLDE"
  27. },
  28. "legacy_public_internal" = {
  29. # Weird name, but this is the 'private' copy of the public domain
  30. zone = "mdr.defpoint.com"
  31. zone_id = "Z2RGT77XQU1QBX"
  32. },
  33. }
  34. c2_accounts = {
  35. "aws-us-gov" = "721817724804" # mdr-prod-c2-gov
  36. "aws" = "045312110490" # mdr-prod-c2
  37. }
  38. }