Created
October 23, 2018 19:12
-
-
Save esell/ab4e3f43e0fa56ab10244216976c4ad9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
}, | |
"variables": {}, | |
"resources": [ | |
{ | |
"type": "Microsoft.Network/networkSecurityGroups", | |
"name": "app2-nsg-uiq76ih4woyp4", | |
"apiVersion": "2018-02-01", | |
"location": "westus2", | |
"properties": { | |
"securityRules": [ | |
{ | |
"name": "testing-rule-2", | |
"properties": { | |
"description": "just a test.", | |
"protocol": "Tcp", | |
"sourcePortRange": "*", | |
"destinationPortRange": "8000", | |
"sourceAddressPrefix": "*", | |
"destinationAddressPrefix": "*", | |
"access": "Allow", | |
"priority": 4000, | |
"direction": "Inbound", | |
"sourcePortRanges": [], | |
"destinationPortRanges": [], | |
"sourceAddressPrefixes": [], | |
"destinationAddressPrefixes": [] | |
} | |
} | |
] | |
}, | |
"dependsOn": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment