account.hcl 902 B

123456789101112131415161718192021
  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 = "afs-mdr-common-services"
  5. account_alias = "afs-mdr-common-services"
  6. aws_account_id = "471284459109"
  7. instance_termination_protection = true # set to true for production!
  8. splunk_prefix = "moose"
  9. okta_app = "AWS - Commercial"
  10. c2_account_standards_path = "../../../../prod/aws/mdr-prod-c2/005-account-standards-c2"
  11. # For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
  12. vpc_info = {
  13. "vpc-security" = {
  14. "name" = "vpc-security",
  15. "purpose" = "created for palo altos, can probably be removed.",
  16. "cidr" = "10.1.0.0/22",
  17. }
  18. }
  19. }