Skip to content

Commit 61f823f

Browse files
authored
Fixes MicrosoftDocs/azure-docs#8861
It should be StandardLRS or PremiumLRS, there is no underscore.
1 parent 4c2fc68 commit 61f823f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/virtual-machines/windows/convert-disk-storage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ $rgName = 'yourResourceGroup'
4242
# Name of the your virtual machine
4343
$vmName = 'yourVM'
4444
45-
# Choose between Standard_LRS and Premium_LRS based on your scenario
46-
$storageType = 'Premium_LRS'
45+
# Choose between StandardLRS and PremiumLRS based on your scenario
46+
$storageType = 'PremiumLRS'
4747
4848
# Premium capable size
4949
# Required only if converting storage from standard to premium
@@ -84,8 +84,8 @@ For your dev/test workload, you may want to have mixture of standard and premium
8484
$diskName = 'yourDiskName'
8585
# resource group that contains the managed disk
8686
$rgName = 'yourResourceGroupName'
87-
# Choose between Standard_LRS and Premium_LRS based on your scenario
88-
$storageType = 'Premium_LRS'
87+
# Choose between StandardLRS and PremiumLRS based on your scenario
88+
$storageType = 'PremiumLRS'
8989
# Premium capable size
9090
$size = 'Standard_DS2_v2'
9191

0 commit comments

Comments
 (0)