github.com/openshift/installer@v1.4.17/upi/azurestack/02_storage.json (about) 1 { 2 "$schema" : "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", 3 "contentVersion" : "1.0.0.0", 4 "parameters" : { 5 "baseName" : { 6 "type" : "string", 7 "minLength" : 1, 8 "metadata" : { 9 "description" : "Base name to be used in resource names (usually the cluster's Infra ID)" 10 } 11 }, 12 "vhdBlobURL" : { 13 "type" : "string", 14 "metadata" : { 15 "description" : "URL pointing to the blob where the VHD to be used to create master and worker machines is located" 16 } 17 } 18 }, 19 "variables" : { 20 "location" : "[resourceGroup().location]", 21 "imageName" : "[parameters('baseName')]" 22 }, 23 "resources" : [ 24 { 25 "apiVersion" : "2017-12-01", 26 "type": "Microsoft.Compute/images", 27 "name": "[variables('imageName')]", 28 "location" : "[variables('location')]", 29 "properties": { 30 "storageProfile": { 31 "osDisk": { 32 "osType": "Linux", 33 "osState": "Generalized", 34 "blobUri": "[parameters('vhdBlobURL')]", 35 "storageAccountType": "Standard_LRS" 36 } 37 } 38 } 39 } 40 ] 41 }