12345678910111213141516171819 |
- # Set account-wide variables. These are automatically pulled in to configure the remote state bucket in the root
- # terragrunt.hcl configuration.
- locals {
- account_name = "mdr-prod-afs"
- account_alias = "mdr-prod-afs"
- aws_account_id = "812644341462"
- instance_termination_protection = false # set to true for production!
- splunk_prefix = "afs"
- # 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",
- "cidr" = "TODO",
- "tgw_attached" = true
- }
- }
- }
|