{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "WebAppName": { "type": "string", "maxLength": 24, "minLength": 3, "metadata": { "description": "App name for Bold BI Server. The name must be between 3 and 24 characters long, and can contain only numbers and lowercase letters." } }, "storageAccountName": { "type": "string", "maxLength": 24, "minLength": 3, "metadata": { "description": "Storage account name for Bold BI. The name must be between 3 to 24 characters long, and can contain only numbers and lowercase letters." }, "defaultValue": "boldbistorage" }, "storageAccountType": { "type": "string", "allowedValues": [ "Standard_LRS", "Standard_GRS", "Standard_RAGRS" ], "metadata": { "description": "Type of the storage account created" }, "defaultValue": "Standard_LRS" } }, "variables": { "templatelink": "https://raw.githubusercontent.com/boldbi/azure-arm-template/master/armtemplates/v3.3.88/AzureBlobStorage-BoldBI.json" }, "resources": [ { "apiVersion": "2015-01-01", "name": "AzureBlobStorage-BoldBI.json", "type": "Microsoft.Resources/deployments", "properties": { "mode": "Incremental", "templateLink": { "uri": "[variables('templatelink')]", "contentVersion": "1.0.0.0" }, "parameters": { "WebAppName": { "value": "[parameters('WebAppName')]" }, "storageAccountName": { "value": "[parameters('storageAccountName')]" }, "storageAccountType": { "value": "[parameters('storageAccountType')]" } } } } ] }