env.hcl 980 B

1234567891011121314151617181920212223242526272829303132
  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 = "common"
  5. transit_gateway_account_name = "mdr-prod-c2" # Which account has the transit gateway
  6. legacy_account = "477548533976"
  7. # Note: 'private' and 'reverse' do not presently work in common services
  8. dns_info = {
  9. "private" = {
  10. zone = "pvt.xdr.accenturefederalcyber.com",
  11. zone_id = "Z08498911YSZW4A0XN4AG"
  12. },
  13. "public" = {
  14. zone = "xdr.accenturefederalcyber.com"
  15. zone_id = "Z0083657A94URZM2TM87"
  16. },
  17. "legacy_private" = {
  18. zone = "msoc.defpoint.local"
  19. zone_id = "Z2JVOIKXZP64QP"
  20. },
  21. "legacy_public" = {
  22. zone = "mdr.defpoint.com"
  23. zone_id = "Z2HYR9YEZ4KLDE"
  24. },
  25. }
  26. c2_accounts = {
  27. "aws-us-gov" = "721817724804" # mdr-prod-c2-gov
  28. "aws" = "045312110490" # mdr-prod-c2
  29. }
  30. }