Cannot Create Managed Disk from Snapshot

Jeremiah Adams 171 Reputation points
2021-03-11T20:26:50.387+00:00

I was able to create a standard HDD Disk from a snapshot until today. This is now the error I see below.

Anyone have any ideas?

{
"code": "DeploymentFailed",
"message": "At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.",
"details": [
{
"code": "InvalidTier",
"message": "Setting a tier explicitly on the disk CRMPRODDISK for account type Standard_LRS is not supported."
}
]
}

Azure Disk Storage
Azure Disk Storage
A high-performance, durable block storage designed to be used with Azure Virtual Machines and Azure VMware Solution.
575 questions
{count} votes

5 additional answers

Sort by: Most helpful
  1. Jeremiah Adams 171 Reputation points
    2021-03-16T14:10:00.367+00:00

    What a convenient method for increasing the sales of Premium SSD.

    1 person found this answer helpful.
    0 comments No comments

  2. Lothar Herlitzius 1 Reputation point
    2021-03-17T09:02:22.71+00:00

    Hi - you can create a PremiumSSD and convert it to any Harddisk-Service Type using the Script described here - you can skip everything which is related to the VM if you don't want to change anything related to the size and the disk is not connected to the VM.

    https://learn.microsoft.com/en-us/azure/virtual-machines/windows/convert-disk-storage

    0 comments No comments

  3. Jeremiah Adams 171 Reputation points
    2021-03-17T13:31:28.933+00:00

    This was changed over the course of a week. Last week I could create a standard HDD from a snapshot via point and click in the portal. The portal is unstable.

    0 comments No comments

  4. Gregory Suvalian 186 Reputation points
    2021-03-19T15:02:40.86+00:00

    This is bug in a portal which shall be fixed by Microsoft. Setting tier from powershell works fine.

    get-azDisk -Name <diskName> -ResourceGroupName <resourcegroupName>
    $disk.Sku =  [Microsoft.Azure.Management.Compute.Models.DiskSku]::new("StandardSSD_LRS")
    $disk | update-azdisk