env.hcl 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. 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. private_dns = {
  15. "aws-us-gov" = {
  16. "name" = "gc.accenturefederalcyber.com",
  17. "id" = "Z08253091KU7QO3JTSCBJ",
  18. # If starting fresh, leave dns_servers as an empty list
  19. "dns_servers" = [
  20. "10.40.0.198",
  21. "10.40.0.64",
  22. "10.40.1.26",
  23. ]
  24. },
  25. "aws" = {
  26. "name" = "co.accenturefederalcyber.com",
  27. "id" = "Z0295812Z38G5UXFC7OK",
  28. "dns_servers" = [
  29. "10.32.0.166",
  30. "10.32.0.47",
  31. "10.32.1.83",
  32. ]
  33. }
  34. }
  35. # Legacy DNS
  36. dns_private = {
  37. "id" = "Z2JVOIKXZP64QP"
  38. "name" = "msoc.defpoint.local"
  39. }
  40. dns_private2 = {
  41. # There are many of these... future task to figure it out
  42. "id" = "Z2RGT77XQU1QBX"
  43. "name" = "mdr.defpoint.com"
  44. }
  45. dns_public = {
  46. "id" = "Z2HYR9YEZ4KLDE"
  47. "name" = "mdr.defpoint.com"
  48. }
  49. }