Skip to content

Instantly share code, notes, and snippets.

@esell
Created October 23, 2018 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esell/ab4e3f43e0fa56ab10244216976c4ad9 to your computer and use it in GitHub Desktop.
Save esell/ab4e3f43e0fa56ab10244216976c4ad9 to your computer and use it in GitHub Desktop.
{
"$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