account.hcl 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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"
  5. account_alias = "afs-mdr-common-services"
  6. aws_account_id = "471284459109"
  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/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" = "created for palo altos, can probably be removed.",
  18. "cidr" = "10.1.0.0/22",
  19. }
  20. }
  21. #####################################
  22. # DNS Zones
  23. hosted_public_dns_zones = [
  24. "accenturefederalcyber.com",
  25. "accenturefederalcyber.net",
  26. "xdr.accenturefederalcyber.com",
  27. "xdrtest.accenturefederalcyber.com",
  28. ]
  29. # Delegated zones are created in different accounts
  30. delegated_public_dns_zones = {
  31. "ai.accenturefederalcyber.com" = [
  32. "ns-348.awsdns-43.com",
  33. "ns-1733.awsdns-24.co.uk",
  34. "ns-1330.awsdns-38.org",
  35. "ns-610.awsdns-12.net",
  36. ],
  37. "caasp.accenturefederalcyber.com" = [
  38. "ns-537.awsdns-03.net",
  39. "ns-1532.awsdns-63.org",
  40. "ns-1933.awsdns-49.co.uk",
  41. "ns-417.awsdns-52.com",
  42. ],
  43. }
  44. # For testing
  45. create_test_instance = false
  46. test_instance_key_name = "fdamstra" # The key with which to provision the test instance
  47. # Palo Alto moved to govcloud
  48. # panorama_count = 2 # We need a second serial number for 2
  49. # #panorama_instance_type = "m5.2xlarge"
  50. # panorama_instance_type = "t3.xlarge"
  51. # panorama_key_name = "fdamstra" # DO NOT CHANGE
  52. # palo_alto_count = 2 # should be divisible by 2
  53. # palo_alto_instance_type = "m5.xlarge"
  54. # palo_alto_key_name = "fdamstra" # DO NOT CHANGE
  55. #
  56. # # To generate auth keys, log in to the panorama cli and run:
  57. # # request bootstrap vm-auth-key generate lifetime 720
  58. # # where 720 is the validity period in hours (720 is 30 days)
  59. # # (Should only need to be valid when you stand up the firewall)
  60. # palo_alto_auth_keys = [
  61. # "919502713609312", # Expires at: 2020/07/30 21:32:44
  62. # "655051814206833", # Expires at: 2020/07/30 21:32:45
  63. # ]
  64. # palo_alto_license_keys = [ # one per count
  65. # "32836999",
  66. # "65202677"
  67. # ]
  68. # palo_alto_feature_auth_keys = [ # one per count, not yet implemented
  69. # "28341453",
  70. # "62158825"
  71. # ]
  72. }