env.hcl 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. proxy = "proxy.msoc.defpoint.local"
  10. proxy_ip = "10.80.101.166"
  11. salt_master = "salt-master.msoc.defpoint.local"
  12. salt_master_ip = "10.80.101.170"
  13. hec = "iratemoses.pvt.xdr.accenturefederalcyber.com"
  14. hec_pub = "iratemoses.mdr.defpoint.com"
  15. legacy_account = "477548533976"
  16. c2_accounts = {
  17. "aws-us-gov" = "721817724804" # mdr-prod-c2-gov
  18. "aws" = "045312110490" # mdr-prod-c2
  19. }
  20. # Common services doesn't have DNS Servers
  21. #dns_servers = [
  22. #]
  23. # Note: 'private' and 'reverse' do not presently work in common services
  24. dns_info = {
  25. "private" = {
  26. zone = "pvt.xdr.accenturefederalcyber.com",
  27. zone_id = "Z08498911YSZW4A0XN4AG"
  28. },
  29. "public" = {
  30. zone = "xdr.accenturefederalcyber.com"
  31. zone_id = "Z0083657A94URZM2TM87"
  32. }
  33. }
  34. # legacy DNS
  35. dns_private = {
  36. "id" = "Z2JVOIKXZP64QP"
  37. "name" = "msoc.defpoint.local"
  38. }
  39. dns_private2 = {
  40. # There are many of these... future task to figure it out
  41. "id" = "Z2RGT77XQU1QBX"
  42. "name" = "mdr.defpoint.com"
  43. }
  44. dns_public = {
  45. "id" = "Z2HYR9YEZ4KLDE"
  46. "name" = "mdr.defpoint.com"
  47. }
  48. }