Skip to content

Commit

Permalink
Merge pull request #3678 from ministryofjustice/csr/SG-app-update
Browse files Browse the repository at this point in the history
adding in RDP to azure jump servers from app SG
  • Loading branch information
haitchison authored Oct 16, 2023
2 parents faf8b20 + 1bcbc2a commit 90e83f4
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -794,6 +794,20 @@ locals {
cidr_blocks = local.security_group_cidrs.enduserclient
# IMPORTANT: check if this needs to be changed to include client access
}
rdp_tcp_app = {
description = "3389: Allow RDP ingress"
from_port = 3389
to_port = 3389
protocol = "TCP"
cidr_blocks = local.security_group_cidrs.jumpservers
}
rdp_udp_app = {
description = "3389: Allow RDP ingress"
from_port = 3389
to_port = 3389
protocol = "UDP"
cidr_blocks = local.security_group_cidrs.jumpservers
}
winrm_app = {
description = "5985-6: Allow WinRM ingress"
from_port = 5985
Expand Down

0 comments on commit 90e83f4

Please sign in to comment.