123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # Set common variables for the environment. This is automatically pulled in in the root terragrunt.hcl configuration to
- # feed forward to the child modules.
- locals {
- environment = "common"
- transit_gateway_account_name = "mdr-prod-c2" # Which account has the transit gateway
- environment_tags = {
- Environment = local.environment
- }
- proxy = "proxy.msoc.defpoint.local"
- proxy_ip = "10.80.101.166"
- salt_master = "salt-master.msoc.defpoint.local"
- salt_master_ip = "10.80.101.170"
- hec = "iratemoses.pvt.xdr.accenturefederalcyber.com"
- hec_pub = "iratemoses.mdr.defpoint.com"
- legacy_account = "477548533976"
- c2_accounts = {
- "aws-us-gov" = "721817724804" # mdr-prod-c2-gov
- "aws" = "045312110490" # mdr-prod-c2
- }
- # Common services doesn't have DNS Servers
- #dns_servers = [
- #]
- # Note: 'private' and 'reverse' do not presently work in common services
- dns_info = {
- "private" = {
- zone = "pvt.xdr.accenturefederalcyber.com",
- zone_id = "Z08498911YSZW4A0XN4AG"
- },
- "public" = {
- zone = "xdr.accenturefederalcyber.com"
- zone_id = "Z0083657A94URZM2TM87"
- }
- }
- # legacy DNS
- dns_private = {
- "id" = "Z2JVOIKXZP64QP"
- "name" = "msoc.defpoint.local"
- }
- dns_private2 = {
- # There are many of these... future task to figure it out
- "id" = "Z2RGT77XQU1QBX"
- "name" = "mdr.defpoint.com"
- }
- dns_public = {
- "id" = "Z2HYR9YEZ4KLDE"
- "name" = "mdr.defpoint.com"
- }
- }
|