employee_ips.tf 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # For IPs that are trusted because of which employee/location they're coming from.
  2. #
  3. # Fred dreams of deleting this file completely.
  4. locals {
  5. trusted_ips = [ # IPs for 'permissive' ingress. Used for the bastion host and for testing. Think twice before employing.
  6. "108.203.37.38/32", # Duane Waddle
  7. "24.11.231.98/32", # George Starcher
  8. "99.151.37.185/32", # Wesley Leonard
  9. "73.10.53.113/32", # Rick Page Home
  10. "74.211.32.26/32", # Brad Poulton
  11. "70.160.60.248/32", # Brandon Naughton
  12. "67.167.143.87/32", # Fred Damstra
  13. #"76.173.128.126/32", # Jeremy Cooper
  14. "97.117.127.174/32", # Colby Williams
  15. # We currently have the VPN in a public subnet and we are using a internet gateway. If we want a static egress IP we need to use a private subnet for the VPN and a NAT gateway.
  16. # https://aws.amazon.com/premiumsupport/knowledge-center/client-vpn-static-ip-address/
  17. "18.252.173.222/32", # Test AWS VPN Internet GW Dynamic IP
  18. "18.252.186.82/32", # Prod AWS VPN Internet GW Dynamic IP
  19. ]
  20. portal_test_whitelist = [ # IPs for Portal Test and vmray
  21. "12.245.107.250/32", # DPS Office Legato
  22. "12.204.167.162/32", # DPS Office San Antonio
  23. "54.86.98.62/32", # DPS AWS User VPN
  24. "108.203.37.38/32", # Duane Waddle
  25. "24.11.231.98/32", # George Starcher
  26. "99.151.37.185/32", # Wesley Leonard
  27. "73.10.53.113/32", # Rick Page Home
  28. "74.211.32.26/32", # Brad Poulton
  29. "70.160.60.248/32", # Brandon Naughton
  30. "67.167.143.30/32", # Frederick Damstra
  31. "97.117.127.174/32", # Colby Williams
  32. #"76.173.128.126/32", # Jeremy Cooper
  33. "73.213.108.186/32", # LaDonia Wicks
  34. ]
  35. admin_ips = [
  36. "108.28.25.119/32", # James Kerr Home
  37. "73.10.53.113/32", # Rick Page Home
  38. "99.151.37.185/32", # Wesley Leonard Home
  39. "74.211.32.26/32", # Brad Poulton Home
  40. "104.9.149.90/32", # Greg Rivas Home
  41. "100.4.76.3/32", # Brandon Naughton Home
  42. "170.248.173.247/32", # AFS site
  43. "170.248.173.245/32", # AFS site
  44. "107.207.74.118/32", # Angelita Crawley Home
  45. "69.207.192.131/32", # Aaron Flores Home
  46. "70.120.19.33/32", # Hilda Colon-Martinez Home
  47. "198.13.82.11/32", # Hussein Carrenard Home
  48. "136.226.18.198/32", # Jose Alvarez Home
  49. ]
  50. # from https://config.zscaler.com/zscalergov.net/cenr
  51. zscalar_ips = [
  52. "165.225.3.0/24",
  53. "136.226.10.0/23",
  54. "136.226.12.0/23",
  55. "136.226.14.0/23",
  56. "165.225.46.0/24",
  57. "136.226.6.0/23",
  58. "136.226.4.0/23",
  59. "136.226.8.0/23",
  60. "136.226.22.0/24",
  61. "165.225.48.0/24",
  62. "136.226.18.0/23",
  63. "136.226.16.0/23",
  64. "136.226.20.0/23",
  65. ]
  66. }