123456789101112131415161718192021 |
- # 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"
- account_alias = "afs-mdr-common-services"
- aws_account_id = "471284459109"
- instance_termination_protection = true # set to true for production!
- splunk_prefix = "moose"
- okta_app = "AWS - Commercial"
- c2_account_standards_path = "../../../../prod/aws/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" = "created for palo altos, can probably be removed.",
- "cidr" = "10.1.0.0/22",
- }
- }
- }
|