customer_ips.tf 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. locals {
  2. # Customer External IPs
  3. # To increase flexibility and to provide better documentation,
  4. # break up the IPs based on on-prem and not on-prem.
  5. #
  6. # All of the "external" things that need access to publically
  7. # available C2 services, like Salt Masters, Repo Servers
  8. #
  9. # Structure is a list of maps, and the "description" value in the
  10. # map must be unique across the whole list or it will cause an error.
  11. #
  12. c2_services_external_ips = [
  13. {
  14. description = "Test LCPs"
  15. cidr_blocks = [
  16. "18.252.65.137/32", # Test LCP in Govcloud (EIP in common-services-gov)
  17. "54.224.56.231/32", # Test LCP in Commercial (EIP in common-services)
  18. ]
  19. },
  20. {
  21. description = "NGA"
  22. cidr_blocks = [
  23. "199.16.64.3/32", # NGA
  24. ]
  25. },
  26. {
  27. description = "AFS OnPrem"
  28. cidr_blocks = [
  29. "170.248.172.0/23", # AFS Onprem
  30. ]
  31. },
  32. {
  33. description = "AFS Azure"
  34. cidr_blocks = [
  35. "20.190.250.137/32", # EastUS2_External_Access
  36. "52.232.227.197/32", # Azure US-East Palo
  37. "52.185.64.173/32", # CentralUS_External_Access
  38. "52.242.225.98/32", # Azure US-Central Palo 20200721
  39. "52.177.84.83/32", # Lab_External_Access
  40. ]
  41. },
  42. {
  43. description = "BAS-Commerce CMPS"
  44. cidr_blocks = [
  45. "52.61.137.158/32", # 2021-04-06 From Daniel Dicke <daniel.dicke@asmr.com>
  46. "52.61.70.43/32", # 2021-04-15 yanked from VPC flow logs
  47. ]
  48. },
  49. {
  50. description = "FRTIB VDI"
  51. cidr_blocks = [
  52. "52.61.113.202/32", # 2021-04-15 From Brian Nguyen brian.a.nguyen@accenturefederal.com
  53. ]
  54. },
  55. {
  56. description = "FRTIB CMPS"
  57. cidr_blocks = [
  58. "15.200.226.57/32", # 2021-07-12 From Brian Nguyen brian.a.nguyen@accenturefederal.com
  59. ]
  60. },
  61. {
  62. description = "FRTIB ALIGHT"
  63. cidr_blocks = [
  64. "54.205.60.17/32", # 2021-05-04 From John Conrad john.conrad.2@alight.com
  65. "52.206.203.98/32",
  66. "34.233.188.131/32",
  67. ]
  68. },
  69. {
  70. description = "FRTIB ALIGHT 2"
  71. cidr_blocks = [
  72. "34.214.247.125/32", # 2022-01-20 From John Conrad john.conrad.2@alight.com
  73. "44.235.174.214/32",
  74. "52.89.203.9/32",
  75. ]
  76. },
  77. {
  78. description = "CA-C19"
  79. cidr_blocks = [
  80. "44.226.172.7/32", # ca-c19-splunk-ds-1 2022-06-22 From Ben Troglia WEST MSOCI-2214
  81. "52.24.211.95/32", # ca-c19-splunk-syslog-1
  82. "52.35.39.247/32", # ca-c19-splunk-syslog-2
  83. "3.226.9.146/32", # ca-c19-splunk-ds-2 2022-06-22 From Ben Troglia EAST MSOCI-2214
  84. "44.207.196.144/32", # ca-c19-splunk-syslog-3
  85. "44.207.241.26/32", # ca-c19-splunk-syslog-4
  86. ]
  87. },
  88. {
  89. description = "DGI"
  90. cidr_blocks = [
  91. "3.32.175.159/32", # 2021-06-24 From Angelita Crawley MSOCI-1776
  92. "15.200.13.143/32",
  93. ]
  94. },
  95. {
  96. description = "FRTIB Chaos test us-east-1"
  97. cidr_blocks = [
  98. "3.221.245.113/32",
  99. "34.237.100.242/32",
  100. "35.172.75.107/32",
  101. "54.164.205.89/32",
  102. "54.209.105.32/32",
  103. "54.224.69.136/32",
  104. ]
  105. },
  106. {
  107. description = "FRTIB Chaos prod us-east-1"
  108. cidr_blocks = [
  109. "34.237.183.65/32",
  110. "34.227.214.27/32",
  111. "3.232.76.136/32",
  112. ]
  113. },
  114. ]
  115. }