Azure / Azure/AzureStack-QuickStart-Templates
sql-2016-alwayson - Allow all NSG Rule
- Dominant language
- PowerShell
- Stars
- 587
- Forks
- 741
- PR merge metrics
- No merged PRs in 30d
Description
@JeffGoldner
This resource is added to the NSG which opens up everything.
IMO this does not set a good example, rather leave it default and state something about NSG rules in the readme?
"resources": [
{
"name": "[variables('nsgName')]",
"location": "[resourceGroup().location]",
"type": "Microsoft.Network/networkSecurityGroups",
"apiVersion": "2015-06-15",
"properties": {
"securityRules": [
{
"name": "rule1",
"properties": {
"protocol": "*",
"sourcePortRange": "*",
"destinationPortRange": "*",
"sourceAddressPrefix": "*",
"destinationAddressPrefix": "*",
"access": "Allow",
"priority": 101,
"direction": "Inbound"
}
}
]
}
},
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.