Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix deployment error due to space in NSG rule names: The name must begin with a letter or number, end with a letter, number or underscore, and may contain only letters, numbers, underscores, periods, or hyphens. #103

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions 5-VM-Windows-1-NodeTypes-Secure-NSG/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@
"properties": {
"securityRules": [
{
"name": "Azure Portal",
"name": "AzurePortal",
"properties": {
"access": "Allow",
"sourceAddressPrefix": "ServiceFabric",
Expand All @@ -456,7 +456,7 @@
}
},
{
"name": "Client API",
"name": "ClientAPI",
"properties": {
"access": "Deny",
"sourceAddressPrefix": "Internet",
Expand All @@ -472,7 +472,7 @@
}
},
{
"name": "SFX + Client API",
"name": "SFXClientAPI",
"properties": {
"access": "Deny",
"sourceAddressPrefix": "Internet",
Expand Down Expand Up @@ -568,7 +568,7 @@
}
},
{
"name": "Custom Endpoint",
"name": "CustomEndpoint",
"properties": {
"access": "Deny",
"sourceAddressPrefix": "Internet",
Expand All @@ -584,7 +584,7 @@
}
},
{
"name": "Resource Provider",
"name": "ResourceProvider",
"properties": {
"access": "Allow",
"sourceAddressPrefix": "*",
Expand All @@ -600,7 +600,7 @@
}
},
{
"name": "Download Binaries",
"name": "DownloadBinaries",
"properties": {
"access": "Allow",
"sourceAddressPrefix": "*",
Expand Down