Forum Discussion
Azure Shared Storage Error
I am trying to create the shared disk using the same jason script mentioned here and getting below error-
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"dataDiskName": {
"type": "string",
"defaultValue": "mySharedDisk"
},
"dataDiskSizeGB": {
"type": "int",
"defaultValue": 1024
},
"maxShares": {
"type": "int",
"defaultValue": 2
}
},
"resources": [
{
"type": "Microsoft.Compute/disks",
"name": "[parameters('dataDiskName')]",
"location": "[resourceGroup().location]",
"apiVersion": "2019-07-01",
"sku": {
"name": "Premium_LRS"
},
"properties": {
"creationData": {
"createOption": "Empty"
},
"diskSizeGB": "[parameters('dataDiskSizeGB')]",
"maxShares": "[parameters('maxShares')]"
}
}
]
}
Thanks Sirius Kuttiyan.
@RaviCSP Once you are done with the signup process please reach out to us at SharedDiskFeedback @ microsoft . com in case of any questions or feedback
Cheers, Vybava
7 Replies
- This is the same problem I have faced. Where are you trying to do? What is your location?
Which subscription are you using? - Sirius Kuttiyan
Microsoft
Hi RaviCSP Shared Disks is currently in Preview, and your subscription must be whitelisted to have the access. Can you confirm if that was done? (Here's the process to sign up for our preview).
- Vybava_Ramadoss
Microsoft
Thanks Sirius Kuttiyan.
@RaviCSP Once you are done with the signup process please reach out to us at SharedDiskFeedback @ microsoft . com in case of any questions or feedback
Cheers, Vybava
- RaviCSPCopper Contributor
Vybava_Ramadoss , Thank you and Sirius Kuttiyan . I have submitted the request to the subscriptions enrolled. will wait for the update.