1234567891011121314151617181920212223242526272829 |
- # 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
- 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"
- }
- legacy_account = "527700175026"
- c2_accounts = {
- "aws-us-gov" = "738800754746" # mdr-test-c2-gov
- "aws" = "816914342178" # mdr-test-c2
- }
- environment_tags = {
- Environment = local.environment
- }
- }
|