Skip to content

Commit 448ce9b

Browse files
committed
Adding callout for CLI.
1 parent c189e94 commit 448ce9b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/virtual-machines/linux/disks-enable-host-based-encryption-cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Use encryption at host to enable end-to-end encryption on your Azur
44
author: roygara
55
ms.service: storage
66
ms.topic: how-to
7-
ms.date: 03/15/2022
7+
ms.date: 03/20/2023
88
ms.author: rogarana
99
ms.subservice: disks
1010
ms.custom: references_regions, devx-track-azurecli
@@ -217,9 +217,9 @@ az vmss update -n $vmssName \
217217

218218
## Finding supported VM sizes
219219

220-
Legacy VM Sizes are not supported. You can find the list of supported VM sizes by either:
220+
Legacy VM Sizes are not supported. You can find the list of supported VM sizes by either using resource SKU APIs or the Azure PowerShell module. You can't find the supported sizes using the CLI.
221221

222-
Calling the [Resource Skus API](/rest/api/compute/resourceskus/list) and checking that the `EncryptionAtHostSupported` capability is set to **True**.
222+
When calling the [Resource Skus API](/rest/api/compute/resourceskus/list), check that the `EncryptionAtHostSupported` capability is set to **True**.
223223

224224
```json
225225
{
@@ -240,7 +240,7 @@ Calling the [Resource Skus API](/rest/api/compute/resourceskus/list) and checkin
240240
}
241241
```
242242

243-
Or, calling the [Get-AzComputeResourceSku](/powershell/module/az.compute/get-azcomputeresourcesku) PowerShell cmdlet.
243+
For the Azure PowerShell module, use the [Get-AzComputeResourceSku](/powershell/module/az.compute/get-azcomputeresourcesku) cmdlet.
244244

245245
```powershell
246246
$vmSizes=Get-AzComputeResourceSku | where{$_.ResourceType -eq 'virtualMachines' -and $_.Locations.Contains('CentralUSEUAP')}

0 commit comments

Comments
 (0)