Skip to content

Commit

Permalink
rdp blocked
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsweetman committed Jan 30, 2025
1 parent deb19af commit 3a5a291
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,20 @@ locals {
protocol = "TCP"
cidr_blocks = local.security_group_cidrs.enduserclient_internal
}
rdp_tcp_rd_sessionhost = {
description = "3389: TCP RDP ingress from remote desktop session hosts"
from_port = 3389
to_port = 3389
protocol = "TCP"
cidr_blocks = local.security_group_cidrs.rd_session_hosts
}
rdp_udp_rd_sessionhost = {
description = "3389: UDP RDP ingress from remote desktop session hosts"
from_port = 3389
to_port = 3389
protocol = "UDP"
cidr_blocks = local.security_group_cidrs.rd_session_hosts
}
rpc_dynamic_tcp_rd_sessionhost = {
description = "49152-65535: TCP Dynamic Port ingress from remote desktop session hosts"
from_port = 49152
Expand Down

0 comments on commit 3a5a291

Please sign in to comment.