Skip to content

Instantly share code, notes, and snippets.

@StefH
Created March 28, 2021 11:06
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 StefH/cc5238cb973cece1ccbf7b128e8dce0e to your computer and use it in GitHub Desktop.
Save StefH/cc5238cb973cece1ccbf7b128e8dce0e to your computer and use it in GitHub Desktop.
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"name": {
"type": "string"
},
"location": {
"type": "string"
},
"sku": {
"type": "string"
},
"skucode": {
"type": "string"
}
},
"resources": [
{
"apiVersion": "2019-12-01-preview",
"name": "[parameters('name')]",
"type": "Microsoft.Web/staticSites",
"location": "[parameters('location')]",
"tags": null,
"properties": {},
"sku": {
"Tier": "[parameters('sku')]",
"Name": "[parameters('skuCode')]"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment