env.hcl 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. environment_tags = {
  7. Environment = local.environment
  8. }
  9. legacy_account = "477548533976"
  10. c2_accounts = {
  11. "aws-us-gov" = "721817724804" # mdr-prod-c2-gov
  12. "aws" = "045312110490" # mdr-prod-c2
  13. }
  14. # Common services doesn't have DNS Servers
  15. #dns_servers = [
  16. #]
  17. # Note: 'private' and 'reverse' do not presently work in common services
  18. dns_info = {
  19. "public" = {
  20. zone = "xdr.accenturefederalcyber.com"
  21. zone_id = "Z0083657A94URZM2TM87"
  22. }
  23. }
  24. # legacy DNS
  25. dns_private = {
  26. "id" = "Z2JVOIKXZP64QP"
  27. "name" = "msoc.defpoint.local"
  28. }
  29. dns_private2 = {
  30. # There are many of these... future task to figure it out
  31. "id" = "Z2RGT77XQU1QBX"
  32. "name" = "mdr.defpoint.com"
  33. }
  34. dns_public = {
  35. "id" = "Z2HYR9YEZ4KLDE"
  36. "name" = "mdr.defpoint.com"
  37. }
  38. }