account.hcl 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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-common-services-gov"
  5. account_alias = "afs-mdr-common-services-gov"
  6. aws_account_id = "701290387780"
  7. instance_termination_protection = true # set to true for production!
  8. splunk_prefix = "moose"
  9. account_tags = {
  10. "Client": local.splunk_prefix
  11. }
  12. c2_account_standards_path = "../../../../prod/aws-us-gov/mdr-prod-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-security" = {
  16. "name" = "vpc-security",
  17. "purpose" = "Palo altos, can probably be removed.",
  18. "cidr" = "10.1.128.0/22"
  19. }
  20. }
  21. # For testing
  22. create_test_instance = false
  23. test_instance_key_name = "TODO" # The key with which to provision the test instance
  24. # Panorama / Palo Alto information
  25. panorama_serial_numbers = [
  26. "000702891433",
  27. "000702138816"
  28. ]
  29. panorama_count = 0 # We need a second serial number for 2
  30. panorama_instance_type = "m5.2xlarge"
  31. #panorama_instance_type = "t3.xlarge"
  32. panorama_key_name = "fdamstra" # DO NOT CHANGE
  33. palo_alto_count = 0 # should be divisible by 2
  34. palo_alto_instance_type = "m5.xlarge"
  35. palo_alto_key_name = "fdamstra" # DO NOT CHANGE
  36. # To generate auth keys, log in to the panorama cli and run:
  37. # request bootstrap vm-auth-key generate lifetime 720
  38. # where 720 is the validity period in hours (720 is 30 days)
  39. # (Should only need to be valid when you stand up the firewall)
  40. palo_alto_auth_keys = [
  41. "866071457115248", #Expires at: 2020/07/31 15:01:33
  42. "165273115818468", #Expires at: 2020/07/31 15:01:34
  43. ]
  44. palo_alto_license_keys = [ # one per count
  45. "32836999",
  46. "65202677"
  47. ]
  48. palo_alto_feature_auth_keys = [ # one per count, not yet implemented
  49. "28341453",
  50. "62158825"
  51. ]
  52. # Qualys Connector
  53. qualys_connector_externalid = "1604790479997"
  54. }