Skip to content

Commit

Permalink
allow winrm from RDS
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsweetman committed Jan 28, 2025
1 parent 86d8171 commit 64d417a
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,13 @@ locals {
protocol = "UDP"
cidr_blocks = local.security_group_cidrs.rd_session_hosts
}
winrm_rds = {
description = "5985: Allow WinRM TCP ingress (powershell remoting) for RDS"
from_port = 5985
to_port = 5986
protocol = "TCP"
cidr_blocks = local.security_group_cidrs.rd_session_hosts
}
}
egress = {
all = {
Expand Down

0 comments on commit 64d417a

Please sign in to comment.