diff --git a/locals.tf b/locals.tf index 5a67ff9..46d4d82 100644 --- a/locals.tf +++ b/locals.tf @@ -40,11 +40,21 @@ 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 = { + ao_vpn_endpoints_tcp = { + from_port = 60000 + protocol = "tcp" + to_port = 60100 + }, + 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 + }, http = { from_port = 80 protocol = "tcp"