123456789101112131415161718192021222324 |
- # Set account-wide variables. These are automatically pulled in to configure the remote state bucket in the root
- # terragrunt.hcl configuration.
- #
- # Variables in this file should be considered 'set it and forget it'. Values should be permanent, or nearly so.
- # Variables that may change during the life of an account should go in the module itself.
- locals {
- account_name = "afs-mdr-test-modelclient-gov"
- account_alias = "afs-mdr-test-modelclient-gov"
- aws_account_id = "701341250728"
- instance_termination_protection = false # set to true for production accounts!
- splunk_prefix = "modelclient"
- c2_account_standards_path = "../../mdr-test-c2/005-account-standards-c2" # Subsitute with test or prod
- # For CIDR assignment, see https://github.xdr.accenturefederalcyber.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
- vpc_info = {
- "vpc-splunk" = {
- "name" = "vpc-splunk",
- "purpose" = "Splunk Systems (modelclient)", # Substitute with Customer Name
- "cidr" = "10.22.0.0/22",
- "tgw_attached" = true
- }
- }
- }
|