account.hcl 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. okta_app = "AWS - GovCloud"
  10. account_tags = {
  11. "Client" : local.splunk_prefix
  12. }
  13. c2_account_standards_path = "../../../../prod/aws-us-gov/mdr-prod-c2/005-account-standards-c2"
  14. # For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
  15. vpc_info = {
  16. "vpc-security" = {
  17. "name" = "vpc-security",
  18. "purpose" = "Palo altos, can probably be removed.",
  19. "cidr" = "10.1.128.0/22"
  20. }
  21. "vpc-codebuild" = {
  22. "name" = "vpc-codebuild",
  23. "purpose" = "VPC for codebuild Magic Machine",
  24. "cidr" = "10.1.132.0/22"
  25. }
  26. }
  27. # Panorama / Palo Alto information
  28. panorama_serial_numbers = [
  29. "000702891433",
  30. "000702138816"
  31. ]
  32. panorama_count = 0 # We need a second serial number for 2
  33. panorama_instance_type = "m5.2xlarge"
  34. #panorama_instance_type = "t3.xlarge"
  35. panorama_key_name = "fdamstra" # DO NOT CHANGE
  36. palo_alto_count = 0 # should be divisible by 2
  37. palo_alto_instance_type = "m5.xlarge"
  38. palo_alto_key_name = "fdamstra" # DO NOT CHANGE
  39. # To generate auth keys, log in to the panorama cli and run:
  40. # request bootstrap vm-auth-key generate lifetime 720
  41. # where 720 is the validity period in hours (720 is 30 days)
  42. # (Should only need to be valid when you stand up the firewall)
  43. palo_alto_auth_keys = [
  44. "866071457115248", #Expires at: 2020/07/31 15:01:33
  45. "165273115818468", #Expires at: 2020/07/31 15:01:34
  46. ]
  47. palo_alto_license_keys = [ # one per count
  48. "32836999",
  49. "65202677"
  50. ]
  51. palo_alto_feature_auth_keys = [ # one per count, not yet implemented
  52. "28341453",
  53. "62158825"
  54. ]
  55. # Qualys Connector
  56. qualys_connector_externalid = "1604790479997"
  57. }