account.hcl 912 B

12345678910111213141516171819202122
  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. # TODO put the right values here
  5. account_name = "TODO"
  6. account_alias = "TODO"
  7. aws_account_id = "TODO"
  8. instance_termination_protection = TODO # set to true for production!
  9. splunk_prefix = "TODO"
  10. c2_account_standards_path = "../../mdr-TODO-c2/005-account-standards-c2" # TODO: Subsitute with test or prod
  11. # For CIDR assignment, see https://github.xdr.accenturefederalcyber.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
  12. vpc_info = {
  13. "vpc-splunk" = {
  14. "name" = "vpc-splunk",
  15. "purpose" = "Splunk Systems (TODO)", # TODO: Substitute with Customer Name
  16. "cidr" = "TODO",
  17. "tgw_attached" = true
  18. }
  19. }
  20. }