account.hcl 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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-prod-c2"
  5. account_alias = "afs-mdr-prod-c2"
  6. aws_account_id = "045312110490"
  7. instance_termination_protection = true # set to true for production!
  8. account_tags = { }
  9. c2_account_standards_path = "../../mdr-prod-c2/005-account-standards-c2"
  10. # For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
  11. standard_vpc_cidr = "10.32.0.0/22"
  12. vpc_cidrs = {
  13. "standard_vpc" = "10.32.0.0/22",
  14. "qualys_vpc" = "10.32.12.0/22",
  15. "security_vpc" = "10.179.4.0/22"
  16. }
  17. # DNS Resolver
  18. resolver_instance_type = "t3a.micro"
  19. resolver_instance_key_name = "fdamstra"
  20. # For testing
  21. create_test_instance = false
  22. test_instance_key_name = "fdamstra" # They with which to provision the test instance
  23. # AS Number used for various resources, but not every account needs one.
  24. asn = 64800
  25. security_vpc_cidr = "10.179.4.0/22"
  26. # Interconnects
  27. interconnect_asn = 64888
  28. interconnects_instance_type = "t3a.micro"
  29. interconnects_key_name = "fdamstra" # DO NOT CHANGE
  30. interconnects_count = 2
  31. interconnect_instances_path = "../../../aws-us-gov/mdr-prod-c2/018-interconnect-instances"
  32. }