account.hcl 940 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 = "mdr-prod-la-c19"
  6. account_alias = "mdr-prod-la-c19"
  7. aws_account_id = "520722177857"
  8. instance_termination_protection = true # set to true for production!
  9. splunk_prefix = "la-c19"
  10. c2_account_standards_path = "../../mdr-prod-c2/005-account-standards-c2" # TODO: Subsitute with test or prod
  11. # For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
  12. vpc_info = {
  13. "vpc-splunk" = {
  14. "name" = "vpc-splunk",
  15. "purpose" = "Splunk Systems la-c19", # TODO: Substitute with Customer Name
  16. "cidr" = "10.42.12.0/22",
  17. "tgw_attached" = true
  18. }
  19. }
  20. }