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 = "test"
- transit_gateway_account_name = "mdr-test-c2" # Which account has the transit gateway
- environment_tags = {
- Environment = local.environment
- }
- legacy_account = "527700175026"
- c2_accounts = {
- "aws-us-gov" = "738800754746" # mdr-test-c2-gov
- "aws" = "816914342178" # mdr-test-c2
- }
- private_dns = {
- "aws-us-gov" = {
- "name" = "gctest.accenturefederalcyber.com",
- "id" = "Z08253713IR2OY59O4OGL",
- # If starting fresh, leave dns_servers as an empty list
- "dns_servers" = [
- "10.20.0.119",
- "10.20.0.211",
- "10.20.1.11",
- ]
- },
- "aws" = {
- "name" = "cotest.accenturefederalcyber.com",
- "id" = "Z03093872COCFHKM0AGC2",
- "dns_servers" = [
- "10.16.0.13",
- "10.16.0.207",
- "10.16.1.23",
- ]
- }
- }
- # Legacy DNS
- dns_private = {
- "id" = "Z39OIGEKXXGJZ2"
- "name" = "msoc.defpoint.local"
- }
- dns_private2 = {
- "id" = "Z13C1OOJMG0BJ7", #zone 2
- "name" = "mdr-test.defpoint.com"
- }
- dns_public = {
- "id" = "Z3E22S3CIP0UCO",
- "name" = "mdr-test.defpoint.com"
- }
- }
|