We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c42c9c commit 1db340cCopy full SHA for 1db340c
deployNsgs.json
@@ -39,14 +39,27 @@
39
"properties": {
40
"protocol": "Tcp",
41
"sourcePortRange": "*",
42
- "destinationPortRange": "*",
+ "destinationPortRange": "443",
43
"sourceAddressPrefix": "[parameters('dmzSubnetAddressRange')]",
44
"destinationAddressPrefix": "*",
45
"access": "Allow",
46
"priority": 200,
47
"direction": "Inbound"
48
}
49
},
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
+ },
63
{
64
"name": "AllowRdpOut",
65
0 commit comments