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 = "test"
  5. transit_gateway_account_name = "mdr-test-c2" # Which account has the transit gateway
  6. environment_tags = {
  7. Environment = local.environment
  8. }
  9. legacy_account = "527700175026"
  10. c2_accounts = {
  11. "aws-us-gov" = "738800754746" # mdr-test-c2-gov
  12. "aws" = "816914342178" # mdr-test-c2
  13. }
  14. private_dns = {
  15. "aws-us-gov" = {
  16. "name" = "gctest.accenturefederalcyber.com",
  17. "id" = "Z08253713IR2OY59O4OGL",
  18. # If starting fresh, leave dns_servers as an empty list
  19. "dns_servers" = [
  20. "10.20.0.119",
  21. "10.20.0.211",
  22. "10.20.1.11",
  23. ]
  24. },
  25. "aws" = {
  26. "name" = "cotest.accenturefederalcyber.com",
  27. "id" = "Z03093872COCFHKM0AGC2",
  28. "dns_servers" = [
  29. "10.16.0.13",
  30. "10.16.0.207",
  31. "10.16.1.23",
  32. ]
  33. }
  34. }
  35. # Legacy DNS
  36. dns_private = {
  37. "id" = "Z39OIGEKXXGJZ2"
  38. "name" = "msoc.defpoint.local"
  39. }
  40. dns_private2 = {
  41. "id" = "Z13C1OOJMG0BJ7", #zone 2
  42. "name" = "mdr-test.defpoint.com"
  43. }
  44. dns_public = {
  45. "id" = "Z3E22S3CIP0UCO",
  46. "name" = "mdr-test.defpoint.com"
  47. }
  48. }