account.hcl 938 B

12345678910111213141516171819202122232425262728
  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. vpc_info = {
  13. "vpc-splunk" = {
  14. "name" = "vpc-splunk",
  15. "purpose" = "Splunk Systems",
  16. "cidr" = "TODO"
  17. }
  18. }
  19. # For testing
  20. create_test_instance = false
  21. test_instance_key_name = "TODO" # The key with which to provision the test instance
  22. # Qualys Connector
  23. qualys_connector_externalid = "TODO" # Needs to come from the qualys console
  24. }