env.hcl 811 B

123456789101112131415161718192021222324252627282930
  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. dns_private = {
  7. "id" = "Z2JVOIKXZP64QP"
  8. "name" = "msoc.defpoint.local"
  9. }
  10. dns_private2 = {
  11. # There are many of these... future task to figure it out
  12. "id" = "Z2RGT77XQU1QBX"
  13. "name" = "mdr.defpoint.com"
  14. }
  15. dns_public = {
  16. "id" = "Z2HYR9YEZ4KLDE"
  17. "name" = "mdr.defpoint.com"
  18. }
  19. legacy_account = "477548533976"
  20. c2_accounts = {
  21. "aws-us-gov" = "721817724804" # mdr-prod-c2-gov
  22. "aws" = "045312110490" # mdr-prod-c2
  23. }
  24. environment_tags = {
  25. Environment = local.environment
  26. }
  27. }