Skip to content

Instantly share code, notes, and snippets.

@gabrielrojasnyc
Created October 29, 2016 23:25
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 gabrielrojasnyc/04473afb840d314ce7313237774cd89f to your computer and use it in GitHub Desktop.
Save gabrielrojasnyc/04473afb840d314ce7313237774cd89f 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": {
"storageAccountName": "virginadraassa"
},
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2016-01-01",
"name": "[variables('storageAccountName')]",
"location": "[resourceGroup().location]",
"sku":
{
"name": "Standard_LRS"
},
"kind": "Storage",
"properties": {}
}
],
"outputs": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment