env.hcl 689 B

1234567891011121314151617181920212223242526
  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. environment_tags = {
  21. Environment = local.environment
  22. }
  23. }