account.hcl 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. account_tags = { }
  9. c2_account_standards_path = "../../../../prod/aws-us-gov/mdr-prod-c2/005-account-standards-c2"
  10. # For CIDR assignment, see https://github.mdr.defpoint.com/mdr-engineering/msoc-infrastructure/wiki/IP-Address-Allocation
  11. standard_vpc_cidr = "10.1.132.0/22"
  12. # For testing
  13. create_test_instance = false
  14. test_instance_key_name = "TODO" # The key with which to provision the test instance
  15. # Account Specific Module Variables
  16. security_vpc_cidr = "10.1.128.0/22"
  17. # Panorama / Palo Alto information
  18. panorama_serial_numbers = [
  19. "000702891433",
  20. "000702138816"
  21. ]
  22. panorama_count = 0 # We need a second serial number for 2
  23. panorama_instance_type = "m5.2xlarge"
  24. #panorama_instance_type = "t3.xlarge"
  25. panorama_key_name = "fdamstra" # DO NOT CHANGE
  26. palo_alto_count = 0 # should be divisible by 2
  27. palo_alto_instance_type = "m5.xlarge"
  28. palo_alto_key_name = "fdamstra" # DO NOT CHANGE
  29. # To generate auth keys, log in to the panorama cli and run:
  30. # request bootstrap vm-auth-key generate lifetime 720
  31. # where 720 is the validity period in hours (720 is 30 days)
  32. # (Should only need to be valid when you stand up the firewall)
  33. palo_alto_auth_keys = [
  34. "866071457115248", #Expires at: 2020/07/31 15:01:33
  35. "165273115818468", #Expires at: 2020/07/31 15:01:34
  36. ]
  37. palo_alto_license_keys = [ # one per count
  38. "32836999",
  39. "65202677"
  40. ]
  41. palo_alto_feature_auth_keys = [ # one per count, not yet implemented
  42. "28341453",
  43. "62158825"
  44. ]
  45. }