account.hcl 1.0 KB

1234567891011121314151617181920212223242526
  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-gov"
  5. account_alias = "afs-mdr-common-services-gov"
  6. aws_account_id = "701290387780"
  7. instance_termination_protection = true # set to true for production!
  8. splunk_prefix = "moose"
  9. okta_app = "AWS - GovCloud"
  10. c2_account_standards_path = "../../../../prod/aws-us-gov/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" = "Palo altos, can probably be removed.",
  16. "cidr" = "10.1.128.0/22"
  17. }
  18. "vpc-codebuild" = {
  19. "name" = "vpc-codebuild",
  20. "purpose" = "VPC for codebuild Magic Machine",
  21. "cidr" = "10.1.132.0/22"
  22. }
  23. }
  24. }