12345678910111213141516171819202122 |
- # Set account-wide variables. These are automatically pulled in to configure the remote state bucket in the root
- # terragrunt.hcl configuration.
- locals {
- # TODO put the right values here
- account_name = "TODO"
- account_alias = "TODO"
- aws_account_id = "TODO"
- instance_termination_protection = TODO # set to true for production!
-
- account_tags = { }
- c2_account_standards_path = "../../mdr-TODO-c2/005-account-standards-c2"
- # For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
- standard_vpc_cidr = "TODO/TODO"
- # For testing
- create_test_instance = false
- test_instance_key_name = "TODO" # The key with which to provision the test instance
- # Qualys Connector
- qualys_connector_externalid = "TODO" # Needs to come from the qualys console
- }
|