globals.hcl 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. # Set common variables for everything. This is automatically pulled in in the root terragrunt.hcl configuration to
  2. # feed forward to the child modules.
  3. locals {
  4. remote_state_bucket = "afsxdr-terraform-state" # Could be moved to environment/partition.
  5. binaries_bucket = "afsxdr-binaries" # Storage for binaries
  6. global_tags = {
  7. "Snapshot" = "Daily", # This will put it on some things where it doesn't belong, but seems useful overall
  8. #"Last_Updated" = timestamp() # while this is cool, its usefulness does not warrant the constant updates.
  9. }
  10. trusted_ips = [ # IPs for 'permissive' ingress. Used for the bastion host and for testing. Think twice before employing.
  11. "75.138.227.80/32", # Duane Waddle
  12. "24.11.231.98/32", # George Starcher
  13. "99.151.37.185/32", # Wesley Leonard
  14. "70.106.200.157/32", # John Reuther
  15. "73.10.53.113/32", # Rick Page Home
  16. "50.21.207.50/32", # Brad Poulton
  17. "70.160.60.248/32", # Brandon Naughton
  18. "99.56.213.129/32", # Fred Damstra
  19. "97.117.119.77/32", # Colby Williams
  20. ]
  21. portal_test_whitelist = local.trusted_ips # for now, an alias
  22. #Customer External IPs
  23. #To increase flexibility and to provide better documentation,
  24. #break up the IPs based on on-prem and not on-prem.
  25. #### AFS ON-PREM POP ####
  26. afs_pop = [
  27. "170.248.172.0/23",
  28. ]
  29. # AFS Azure POP external IPs
  30. afs_azure_pop = [
  31. "20.190.250.137/32", # EastUS2_External_Access
  32. "52.232.227.197/32", # Azure US-East Palo
  33. "52.185.64.173/32", # CentralUS_External_Access
  34. "52.242.225.98/32", # Azure US-Central Palo 20200721
  35. "52.177.84.83/32", # Lab_External_Access
  36. ]
  37. #### NGA ####
  38. nga_pop = [
  39. "199.16.64.3/32"
  40. ]
  41. xdr_interconnect = [
  42. "18.252.61.218/32",
  43. "18.252.67.171/32",
  44. "18.253.123.98/32",
  45. "18.253.98.90/32",
  46. ]
  47. # All of the "external" things that need access to publically
  48. # available C2 services, like Salt Masters, Repo Servers
  49. #
  50. # Structure is a list of maps, and the "description" value in the
  51. # map must be unique across the whole list or it will cause an error.
  52. #
  53. # TODO: the lists of IPs above need to be moved into this. I did not
  54. # attempt it NOW because of the upcoming change freeze and a desire to
  55. # not put in unnecessary changes.
  56. c2_services_external_ips = [
  57. {
  58. description = "NIH ORS LCP"
  59. cidr_blocks = [
  60. "137.187.0.0/16", # Provided by Vikas @ NIH 2020-12-09
  61. "128.231.0.0/16", # Provided by Vikas @ NIH 2020-12-09
  62. "165.112.0.0/16", # Provided by Vikas @ NIH 2020-12-09
  63. "156.40.208.0/20", # Derived from our VPC Flow Logs deny logs 2020-12-11
  64. ]
  65. }
  66. ]
  67. dns_zone_map = {
  68. "accenturefederalcyber.com" = "Z03575081VGXN3FUZ8ERU"
  69. "accenturefederalcyber.net" = "Z07771312N8X39HKP141M"
  70. "xdr.accenturefederalcyber.com" = "Z0083657A94URZM2TM87"
  71. "xdrtest.accenturefederalcyber.com" = "Z01677392W0QM639KU2KC"
  72. }
  73. repo_server_whitelist = concat(
  74. local.trusted_ips,
  75. local.afs_pop,
  76. local.afs_azure_pop,
  77. local.nga_pop,
  78. [ "52.179.13.17/32", #???
  79. "75.138.227.80/32", # Duane's House
  80. ],
  81. local.xdr_interconnect
  82. )
  83. key_pairs = {
  84. # Should be your username -> key pair
  85. "msoc-build" = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDv8N5N/ECQNKdqZKmjQqGkPiAtJc3WmWdpcZmhxUfplGRFW0IlHGH/wPUgkXXg+djWNpMyT+bqWI8B4Q18uw0Y+w09lN+F1t/vp2GNPYyIPHTGbr2u/r5RCuPXc5Gg6ogkneyAipPCPAhBRbvPaFtfLSJ94ba01LoFs4xgCIZXetr/3ql61OlLyB8vb8FohpW/7u32zzOVJwObA+QlDrRgivaYpwNBxd+No9HEz29dUVFMsKb3ko0GpBuu4pptbj73XxP0EeodMj0hee0FH4kEkZy80LVbg2WeTsq6Mi/FRZmeGt5f3oZEcfflGqYOPA4FmhTrc9O9pp36DDOGts79TeZ6abky+a0jRJQvaeN8x8DZ6PQXfVGpOrNst5zw0Z9EP3ZrFAkX6CYfZkckq0h5Fs+rcWLeUfM/ppZqcyNBDys7zxjFNdmWk86pgn+XvdCVIlsp99B6CzgDoAJkay09ROVqh39HTK7m2aKZoyFWZvUpaqUOlLkOb47bMQzIBSp8Yaoo4PozSg0lQOzkJl3JTR0OZksbeN0pFKY4qNcUcpgUU5mVYs5SXWAOsih51kC5s+0F6Uxt+iDjT9ASaF1O+Bl46UnhpwrtN4ckpHsFnp58mdfhJCUMjt6PX+UPxjRlSL21EkjGALybG2C0gPuoGo0x5bEsZl/gFrFJ+3r6gQ== MSOC Build Key",
  86. "fdamstra" = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDF3pGU9+HufgfEhPP7P0Lt7kqfGWLTGd6sfJgSypcSo3FP1XhwFOWkaNvZIpoIeQXhux5vTm+RoqYZ/3Gj7hcGMLdoHWArvLHD2AGjxbFnsmiCioQgsC/rYLBjiWNsDdVF5Arofby/RwzivMAi7yivhY4nGzXPsHZoucB0Wi34/9AmxbvXWv6ckuWkMjrXVe+uwFje3U7jQHRW9jQRpCRRfUjVA4FmH0PWqWFBlt/zqsDPOzbxNNhAvyrJho7jVBNjCLsq0++lT8BDKrYbaZiT0F2c9uIDRpHJSdjpqVCf9bghmeJWYMoNHAkGR7WCFjPCJ7QM57a2oRBtm1A/EWcr",
  87. }
  88. # Some sane defaults we don't want to specify everywhere
  89. is_legacy = false # By default, accounts are not legacy accounts
  90. extra_ebs_key_admins = [ ]
  91. extra_ebs_key_users = [ ]
  92. extra_ebs_key_attachers = [ ]
  93. }