env.hcl 604 B

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