Open ports for explorer and dashboard

This commit is contained in:
phahulin 2017-11-18 20:49:54 +03:00 committed by GitHub
parent 671b96ba00
commit a965451eaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 0 deletions

View File

@ -248,6 +248,32 @@
"comments": "Network Security Group (NSG) for your Primary NIC", "comments": "Network Security Group (NSG) for your Primary NIC",
"properties": { "properties": {
"securityRules": [ "securityRules": [
{
"name": "access-dashboard",
"properties": {
"priority": 1000,
"direction": "Inbound",
"sourceAddressPrefix": "*",
"sourcePortRange": "*",
"protocol": "Tcp",
"access": "Allow",
"destinationAddressPrefix": "*",
"destinationPortRange": "3000"
}
},
{
"name": "access-explorer",
"properties": {
"priority": 1000,
"direction": "Inbound",
"sourceAddressPrefix": "*",
"sourcePortRange": "*",
"protocol": "Tcp",
"access": "Allow",
"destinationAddressPrefix": "*",
"destinationPortRange": "4000"
}
},
{ {
"name": "allow-ssh", "name": "allow-ssh",
"properties": { "properties": {