account.hcl 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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-test-c2-gov"
  5. account_alias = "afs-mdr-test-c2-gov"
  6. aws_account_id = "738800754746"
  7. instance_termination_protection = false # set to true for production!
  8. account_tags = { }
  9. c2_account_standards_path = "../../mdr-test-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.20.0.0/22"
  12. vpc_cidrs = {
  13. "standard_vpc" = "10.20.0.0/22",
  14. "qualys_vpc" = "10.20.12.0/22",
  15. "security_vpc" = "10.179.128.0/22"
  16. }
  17. # For testing
  18. create_test_instance = false
  19. test_instance_key_name = "fdamstra" # They with which to provision the test instance
  20. # AS Number used for various resources, but not every account needs one.
  21. asn = 64710 # changing this replaces the gateway
  22. security_vpc_cidr = "10.179.128.0/22"
  23. # Interconnects
  24. interconnect_asn = 64777
  25. interconnects_instance_type = "t3a.micro"
  26. interconnects_key_name = "fdamstra" # DO NOT CHANGE
  27. interconnects_count = 2
  28. interconnect_instances_path = "../018-interconnect-instances"
  29. # Qualys Scanners
  30. qualys_personalization_codes = {
  31. standard = "21009597903247"
  32. preauthorized = "21005906078774"
  33. }
  34. # Qualys Connector
  35. qualys_connector_externalid = "1601148045651" # Needs to come from the qualys console
  36. }