You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Standard general purpose v1 |✅|| <sup>3</sup> ||✅|
258
258
| ZRS Classic<sup>4</sup><br /><sub>(available in standard general purpose v1 accounts)</sub> |✅||||
259
259
260
260
<sup>1</sup> Conversion for premium file shares is only available by [opening a support request](#support-requested-conversion); [Customer-initiated conversion](#customer-initiated-conversion) is not currently supported.<br />
261
-
<sup>2</sup> Managed disks are only available for LRS and cannot be migrated to ZRS. You can store snapshots and images for standard SSD managed disks on standard HDD storage and [choose between LRS and ZRS options](https://azure.microsoft.com/pricing/details/managed-disks/). For information about integration with availability sets, see [Introduction to Azure managed disks](../../virtual-machines/managed-disks-overview.md#integration-with-availability-sets).<br />
261
+
<sup>2</sup> Managed disks are available for LRS and ZRS, though ZRS disks have some [limitations](../../virtual-machines/disks-redundancy.md#limitations). If a LRS disk is regional (no zone specified) it may be converted by [changing the SKU](../../virtual-machines/disks-convert-types.md). If a LRS disk is zonal, then it can only be manually migrated by following the process in [Migrate your managed disks](../../reliability/migrate-vm.md#migrate-your-managed-disks). You can store snapshots and images for standard SSD managed disks on standard HDD storage and [choose between LRS and ZRS options](https://azure.microsoft.com/pricing/details/managed-disks/). For information about integration with availability sets, see [Introduction to Azure managed disks](../../virtual-machines/managed-disks-overview.md#integration-with-availability-sets).<br />
262
262
<sup>3</sup> If your storage account is v1, you'll need to upgrade it to v2 before performing a conversion. To learn how to upgrade your v1 account, see [Upgrade to a general-purpose v2 storage account](storage-account-upgrade.md).<br />
263
263
<sup>4</sup> ZRS Classic storage accounts have been deprecated. For information about converting ZRS Classic accounts, see [Converting ZRS Classic accounts](#converting-zrs-classic-accounts).<br />
**Applies to:**:heavy_check_mark: Linux VMs :heavy_check_mark: Windows
15
15
16
-
There are five disk types of Azure managed disks: Azure Ultra Disks, Premium SSD v2, premium SSD, Standard SSD, and Standard HDD. You can easily switch between Premium SSD, Standard SSD, and Standard HDD based on your performance needs. You aren't yet able to switch from or to an Ultra Disk or a Premium SSD v2, you must deploy a new one.
16
+
There are five disk types of Azure managed disks: Azure Ultra Disks, Premium SSD v2, premium SSD, Standard SSD, and Standard HDD. You can easily switch between Premium SSD, Standard SSD, and Standard HDD based on your performance needs. Premium SSD and Standard SSD are also available with [Zone-redundant storage](disks-redundancy.md#zone-redundant-storage-for-managed-disks). You aren't yet able to switch from or to an Ultra Disk or a Premium SSD v2, you must deploy a new one.
17
17
18
18
This functionality isn't supported for unmanaged disks. But you can easily convert an unmanaged disk to a managed disk with [CLI](linux/convert-unmanaged-to-managed-disks.md) or [PowerShell](windows/convert-unmanaged-to-managed-disks.md) to be able to switch between disk types.
19
19
@@ -40,7 +40,7 @@ $rgName = 'yourResourceGroup'
40
40
# Name of the your virtual machine
41
41
$vmName = 'yourVM'
42
42
43
-
# Choose between Standard_LRS, StandardSSD_LRS and Premium_LRS based on your scenario
43
+
# Choose between Standard_LRS, StandardSSD_LRS, StandardSSD_ZRS, Premium_ZRS, and Premium_LRS based on your scenario
44
44
$storageType = 'Premium_LRS'
45
45
46
46
# Premium capable size
@@ -87,7 +87,7 @@ vmName='yourVM'
87
87
#Required only if converting from Standard to Premium
88
88
size='Standard_DS2_v2'
89
89
90
-
#Choose between Standard_LRS, StandardSSD_LRS and Premium_LRS based on your scenario
90
+
#Choose between Standard_LRS, StandardSSD_LRS, StandardSSD_ZRS, Premium_ZRS, and Premium_LRS based on your scenario
91
91
sku='Premium_LRS'
92
92
93
93
#Deallocate the VM before changing the size of the VM
@@ -124,7 +124,7 @@ For your dev/test workload, you might want a mix of Standard and Premium disks t
124
124
$diskName = 'yourDiskName'
125
125
# resource group that contains the managed disk
126
126
$rgName = 'yourResourceGroupName'
127
-
# Choose between Standard_LRS, StandardSSD_LRS and Premium_LRS based on your scenario
127
+
# Choose between Standard_LRS, StandardSSD_LRS, StandardSSD_ZRS, Premium_ZRS, and Premium_LRS based on your scenario
0 commit comments