account.hcl 744 B

12345678910111213141516171819
  1. # Set account-wide variables. These are automatically pulled in to configure the remote state bucket in the root
  2. # terragrunt.hcl configuration.
  3. locals {
  4. account_name = "mdr-prod-afs"
  5. account_alias = "mdr-prod-afs"
  6. aws_account_id = "812644341462"
  7. instance_termination_protection = false # set to true for production!
  8. splunk_prefix = "afs"
  9. # For CIDR assignment, see https://github.xdr.accenturefederalcyber.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
  10. vpc_info = {
  11. "vpc-splunk" = {
  12. "name" = "vpc-splunk",
  13. "purpose" = "Splunk Systems",
  14. "cidr" = "TODO",
  15. "tgw_attached" = true
  16. }
  17. }
  18. }