1234567891011121314151617181920212223242526 |
- # Set account-wide variables. These are automatically pulled in to configure the remote state bucket in the root
- # terragrunt.hcl configuration.
- locals {
- account_name = "afs-mdr-common-services-gov"
- account_alias = "afs-mdr-common-services-gov"
- aws_account_id = "701290387780"
- instance_termination_protection = true # set to true for production!
- splunk_prefix = "moose"
- okta_app = "AWS - GovCloud"
- c2_account_standards_path = "../../../../prod/aws-us-gov/mdr-prod-c2/005-account-standards-c2"
- # For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
- vpc_info = {
- "vpc-security" = {
- "name" = "vpc-security",
- "purpose" = "Palo altos, can probably be removed.",
- "cidr" = "10.1.128.0/22"
- }
- "vpc-codebuild" = {
- "name" = "vpc-codebuild",
- "purpose" = "VPC for codebuild Magic Machine",
- "cidr" = "10.1.132.0/22"
- }
- }
- }
|