Skip to content

Commit 1db340c

Browse files
committed
Fixing NSG rules
1 parent 4c42c9c commit 1db340c

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

deployNsgs.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,27 @@
3939
"properties": {
4040
"protocol": "Tcp",
4141
"sourcePortRange": "*",
42-
"destinationPortRange": "*",
42+
"destinationPortRange": "443",
4343
"sourceAddressPrefix": "[parameters('dmzSubnetAddressRange')]",
4444
"destinationAddressPrefix": "*",
4545
"access": "Allow",
4646
"priority": 200,
4747
"direction": "Inbound"
4848
}
4949
},
50+
{
51+
"name": "AllowAzureLoadBalancerInBound",
52+
"properties": {
53+
"protocol": "Tcp",
54+
"sourcePortRange": "*",
55+
"destinationPortRange": "*",
56+
"sourceAddressPrefix": "AzureLoadBalancer",
57+
"destinationAddressPrefix": "*",
58+
"access": "Allow",
59+
"priority": 300,
60+
"direction": "Inbound"
61+
}
62+
},
5063
{
5164
"name": "AllowRdpOut",
5265
"properties": {

0 commit comments

Comments
 (0)