Skip to content

Instantly share code, notes, and snippets.

@RichieBzzzt
Created April 27, 2018 15:14
Show Gist options
  • Save RichieBzzzt/f1441180435c73b6f1b914345ae935aa to your computer and use it in GitHub Desktop.
Save RichieBzzzt/f1441180435c73b6f1b914345ae935aa to your computer and use it in GitHub Desktop.
{
"type": "Microsoft.Sql/servers/firewallRules",
"kind": "v12.0",
"name": "[concat(variables('sqlServerName'), '/', variables('firewallRules_AllowAllAzureServices'))]",
"apiVersion": "2014-04-01-preview",
"location": "[resourceGroup().location]",
"scale": null,
"properties": {
"startIpAddress": "0.0.0.0",
"endIpAddress": "0.0.0.0"
},
"dependsOn": [
"[resourceId('Microsoft.Sql/servers', variables('sqlServerName'))]"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment