12345678910111213141516171819202122232425262728293031323334353637383940 |
- # 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 = "prod"
- transit_gateway_account_name = "mdr-prod-c2" # Which account has the transit gateway
- legacy_account = "477548533976"
- dns_info = {
- "private" = {
- zone = "pvt.xdr.accenturefederalcyber.com",
- zone_id = "Z08498911YSZW4A0XN4AG"
- }
- "reverse" = {
- zone = "10.in-addr.arpa"
- zone_id = "Z08395981DXDBY6CVJTW1"
- }
- "public" = {
- zone = "xdr.accenturefederalcyber.com"
- zone_id = "Z0083657A94URZM2TM87"
- },
- "legacy_private" = {
- zone = "msoc.defpoint.local"
- zone_id = "Z2JVOIKXZP64QP"
- },
- "legacy_public" = {
- zone = "mdr.defpoint.com"
- zone_id = "Z2HYR9YEZ4KLDE"
- },
- "legacy_public_internal" = {
- # Weird name, but this is the 'private' copy of the public domain
- zone = "mdr.defpoint.com"
- zone_id = "Z2RGT77XQU1QBX"
- },
- }
- c2_accounts = {
- "aws-us-gov" = "721817724804" # mdr-prod-c2-gov
- "aws" = "045312110490" # mdr-prod-c2
- }
- }
|