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 = "test"
- transit_gateway_account_name = "mdr-test-c2" # Which account has the transit gateway
- legacy_account = "527700175026"
- 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_private" = {
- zone = "msoc.defpoint.local"
- zone_id = "Z39OIGEKXXGJZ2"
- },
- "legacy_public" = {
- zone = "mdr-test.defpoint.com"
- zone_id = "Z3E22S3CIP0UCO"
- },
- "legacy_public_internal" = {
- # Weird name, but this is the 'private' copy of the public domain
- zone = "mdr-test.defpoint.com"
- zone_id = "Z13C1OOJMG0BJ7"
- },
- }
- c2_accounts = {
- "aws-us-gov" = "738800754746" # mdr-test-c2-gov
- "aws" = "816914342178" # mdr-test-c2
- }
- }
|