env.hcl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. "private" = {
  20. zone = "pvt.xdr.accenturefederalcyber.com",
  21. zone_id = "Z08498911YSZW4A0XN4AG"
  22. },
  23. "public" = {
  24. zone = "xdr.accenturefederalcyber.com"
  25. zone_id = "Z0083657A94URZM2TM87"
  26. }
  27. }
  28. # legacy DNS
  29. dns_private = {
  30. "id" = "Z2JVOIKXZP64QP"
  31. "name" = "msoc.defpoint.local"
  32. }
  33. dns_private2 = {
  34. # There are many of these... future task to figure it out
  35. "id" = "Z2RGT77XQU1QBX"
  36. "name" = "mdr.defpoint.com"
  37. }
  38. dns_public = {
  39. "id" = "Z2HYR9YEZ4KLDE"
  40. "name" = "mdr.defpoint.com"
  41. }
  42. }