account.hcl 834 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 = "TODO"
  6. account_alias = "TODO"
  7. aws_account_id = "TODO"
  8. instance_termination_protection = TODO # set to true for production!
  9. account_tags = { }
  10. c2_account_standards_path = "../../mdr-TODO-c2/005-account-standards-c2"
  11. # For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
  12. standard_vpc_cidr = "TODO/TODO"
  13. # For testing
  14. create_test_instance = false
  15. test_instance_key_name = "TODO" # The key with which to provision the test instance
  16. # Qualys Connector
  17. qualys_connector_externalid = "TODO" # Needs to come from the qualys console
  18. }