Skip to content

Commit d206d94

Browse files
committed
Reworks.
1 parent a802ddb commit d206d94

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/virtual-machines/disks-convert-types.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ This preview is currently only available in the following regions:
5959

6060
### Disable host caching
6161

62-
You can use the following CLI script to identify your disk's LUN and disable host caching. Replace `yourResourceGroup` and `nameOfYourVM` with your own values, then run the script.
62+
If your disk is using host caching, you must disable it before converting to Premium SSD v2. You can use the following CLI script to identify your disk's LUN and disable host caching. Replace `yourResourceGroup` and `nameOfYourVM` with your own values, then run the script.
6363

6464
```azurecli
6565
$myRG="yourResourceGroup"
@@ -72,13 +72,13 @@ az vm update --resource-group $myRG --name $myVM --disk-caching $lun=None
7272

7373
### Disable bursting
7474

75-
If you enabled bursting within 12 hours, you have to wait until the 13th hour or later to disable it.
75+
If your disk is using bursting, you must disable it before converting to Premium SSD v2. If you enabled bursting within 12 hours, you have to wait until the 13th hour or later to disable it.
7676

7777
You can use the following command to disable disk bursting: `az disk update --name "yourDiskNameHere" --resource-group "yourRGNameHere" --enable-bursting false`
7878

7979
### Disable double encryption
8080

81-
You can use the following command to change your disk from double encryption to encryption at rest with customer-managed keys:
81+
If your disk is using double encryption, you must disable it before converting to Premium SSD v2. You can use the following command to change your disk from double encryption to encryption at rest with customer-managed keys:
8282

8383
```azurecli
8484
az disk-encryption-set update --name "nameOfYourDiskEncryptionSetHere" --resource-group "yourRGNameHere" --key-url yourKeyURL --source-vault "yourKeyVaultName" --encryption-type EncryptionAtRestWithCustomerKey

0 commit comments

Comments
 (0)