env.hcl 725 B

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