From 1dd3a7e90c419f265c6df6639437e22e43cf4fd9 Mon Sep 17 00:00:00 2001 From: patrick-fox-cisa Date: Wed, 30 Oct 2024 10:18:39 -0400 Subject: [PATCH 1/2] Add ao vpn ports Ops need more ports --- locals.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/locals.tf b/locals.tf index 5a67ff9..ea26196 100644 --- a/locals.tf +++ b/locals.tf @@ -45,6 +45,16 @@ locals { protocol = "udp" to_port = 51835 }, + ao_vpn_endpoints_2_tcp = { + from_port = 60000 + protocol = "tcp" + to_port = 60100 + }, + ao_vpn_endpoints_2_udp = { + from_port = 60000 + protocol = "udp" + to_port = 60100 + }, http = { from_port = 80 protocol = "tcp" From 5f6a9b13612303f2fd73e468c6f1a6a19bb450da Mon Sep 17 00:00:00 2001 From: patrick-fox-cisa Date: Wed, 30 Oct 2024 11:14:18 -0400 Subject: [PATCH 2/2] Update port group names to match alphabetical order and naming scheme --- locals.tf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/locals.tf b/locals.tf index ea26196..46d4d82 100644 --- a/locals.tf +++ b/locals.tf @@ -40,17 +40,17 @@ locals { # Ports to be accessed in assessment environments (e.g. for # Advanced Ops VPN endpoints, Guacamole, Mattermost, etc.) assessment_env_service_ports = { - ao_vpn_endpoints = { - from_port = 51820 - protocol = "udp" - to_port = 51835 - }, - ao_vpn_endpoints_2_tcp = { + ao_vpn_endpoints_tcp = { from_port = 60000 protocol = "tcp" to_port = 60100 }, - ao_vpn_endpoints_2_udp = { + ao_vpn_endpoints_udp_1 = { + from_port = 51820 + protocol = "udp" + to_port = 51835 + }, + ao_vpn_endpoints_udp_2 = { from_port = 60000 protocol = "udp" to_port = 60100