When I try creating custom image using arm template https://github.com/Microsoft/azure-docs/blob/master/articles/devtest-lab/devtest-lab-create-custom-image-from-vhd-using-powershell.md
I am getting
{
"error": {
"code": "InvalidStorageAccountForLab",
"message": "Invalid storage account for lab"
}
}
I have added lab storage type as Premium, but when I deploy only standard storage is created.
"apiVersion": "2016-05-15",
"type": "Microsoft.DevTestLab/labs",
"name": "[parameters('newLabName')]",
"location": "[resourceGroup().location]",
"tags": {
"ResourceType": "Rig",
"RigTemplate": "[parameters('customTag')]"
},
"properties": {
"labStorageType": "Premium"
},