Skip to content

Commit b595e99

Browse files
authored
Merge pull request #110440 from roygara/encBug
Adding note
2 parents 308f378 + a42a175 commit b595e99

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

articles/virtual-machines/linux/disk-encryption.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,13 @@ For now, customer-managed keys have the following restrictions:
8686

8787
When creating the Key Vault instance, you must enable soft delete and purge protection. Soft delete ensures that the Key Vault holds a deleted key for a given retention period (90 day default). Purge protection ensures that a deleted key cannot be permanently deleted until the retention period lapses. These settings protect you from losing data due to accidental deletion. These settings are mandatory when using a Key Vault for encrypting managed disks.
8888

89+
> [!IMPORTANT]
90+
> Do not camel case the region, if you do so you may experience problems when assigning additional disks to the resource in the Azure portal.
91+
8992
```azurecli
9093
subscriptionId=yourSubscriptionID
9194
rgName=yourResourceGroupName
92-
location=WestCentralUS
95+
location=westcentralus
9396
keyVaultName=yourKeyVaultName
9497
keyName=yourKeyName
9598
diskEncryptionSetName=yourDiskEncryptionSetName
@@ -130,7 +133,7 @@ For now, customer-managed keys have the following restrictions:
130133
```azurecli
131134
rgName=yourResourceGroupName
132135
vmName=yourVMName
133-
location=WestCentralUS
136+
location=westcentralus
134137
vmSize=Standard_DS3_V2
135138
image=UbuntuLTS
136139
diskEncryptionSetName=yourDiskencryptionSetName
@@ -158,7 +161,7 @@ az disk update -n $diskName -g $rgName --encryption-type EncryptionAtRestWithCus
158161
```azurecli
159162
rgName=yourResourceGroupName
160163
vmssName=yourVMSSName
161-
location=WestCentralUS
164+
location=westcentralus
162165
vmSize=Standard_DS3_V2
163166
image=UbuntuLTS
164167
diskEncryptionSetName=yourDiskencryptionSetName
@@ -175,7 +178,7 @@ rgName=yourResourceGroupName
175178
diskName=yourDiskName
176179
diskSkuName=Premium_LRS
177180
diskSizeinGiB=30
178-
location=WestCentralUS
181+
location=westcentralus
179182
diskLUN=2
180183
diskEncryptionSetName=yourDiskEncryptionSetName
181184

articles/virtual-machines/windows/disk-encryption.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ For now, customer-managed keys have the following restrictions:
8787

8888
When creating the Key Vault instance, you must enable soft delete and purge protection. Soft delete ensures that the Key Vault holds a deleted key for a given retention period (90 day default). Purge protection ensures that a deleted key cannot be permanently deleted until the retention period lapses. These settings protect you from losing data due to accidental deletion. These settings are mandatory when using a Key Vault for encrypting managed disks.
8989

90+
> [!IMPORTANT]
91+
> Do not camel case the region, if you do so you may experience problems when assigning additional disks to the resource in the Azure portal.
92+
9093
```powershell
9194
$ResourceGroupName="yourResourceGroupName"
9295
$LocationName="westcentralus"

0 commit comments

Comments
 (0)