123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # 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
- }
- dns_servers = [
- "10.20.0.119",
- "10.20.0.211",
- "10.20.1.11",
- ]
- dns_info = {
- "private" = {
- zone = "pvt.xdrtest.accenturefederalcyber.com",
- zone_id = "Z08514662ZGG8BM81TKD5"
- }
- "reverse" = {
- zone = "10.in-addr.arpa"
- zone_id = "Z08479312XJFUS20YJUJO"
- }
- "public" = {
- zone = "xdrtest.accenturefederalcyber.com"
- zone_id = "Z01677392W0QM639KU2KC"
- }
- }
- # 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"
- }
- }
|