account.hcl 939 B

12345678910111213141516171819202122232425262728293031
  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-malware-gov"
  5. account_alias = "afs-mdr-test-malware-gov"
  6. aws_account_id = "876942499057"
  7. instance_termination_protection = false # set to true for production!
  8. splunk_prefix = "moose"
  9. account_tags = {
  10. "Client": local.splunk_prefix
  11. }
  12. c2_account_standards_path = "../../mdr-test-c2/005-account-standards-c2"
  13. # For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
  14. vpc_info = {
  15. "vpc-vmray" = {
  16. "name" = "vpc-vmray",
  17. "purpose" = "Malware detonation",
  18. "cidr" = "10.20.4.0/22",
  19. "tgw_attached" = true,
  20. }
  21. }
  22. instance_types = {
  23. "vmray-server" = "t3a.micro",
  24. "vmray-worker" = "c5n.metal"
  25. }
  26. vmray_worker_instance_count = 0
  27. }