1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- # 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
- environment_tags = {
- Environment = local.environment
- }
- legacy_account = "477548533976"
- c2_accounts = {
- "aws-us-gov" = "721817724804" # mdr-prod-c2-gov
- "aws" = "045312110490" # mdr-prod-c2
- }
- private_dns = {
- "aws-us-gov" = {
- "name" = "gc.accenturefederalcyber.com",
- "id" = "Z08253091KU7QO3JTSCBJ",
- # If starting fresh, leave dns_servers as an empty list
- "dns_servers" = [
- "10.40.0.198",
- "10.40.0.64",
- "10.40.1.26",
- ]
- },
- "aws" = {
- "name" = "co.accenturefederalcyber.com",
- "id" = "Z0295812Z38G5UXFC7OK",
- "dns_servers" = [
- "10.32.0.166",
- "10.32.0.47",
- "10.32.1.83",
- ]
- }
- }
- # 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"
- }
- }
|