account.hcl 1.1 KB

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