Skip to content

Commit 351e07f

Browse files
[Doc-a-thon] Updating disk-encryption-powershell-quickstart
Adding a clarification any ADE Linux supported image version could be used instead, not only Ubuntu.
1 parent 445e5c6 commit 351e07f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: devx-track-azurepowershell, mode-api
1515

1616
**Applies to:** :heavy_check_mark: Linux VMs :heavy_check_mark: Flexible scale sets
1717

18-
The Azure PowerShell module is used to create and manage Azure resources from the PowerShell command line or in scripts. This quickstart shows you how to use the Azure PowerShell module to create a Linux virtual machine (VM), create a Key Vault for the storage of encryption keys, and encrypt the VM. This quickstart uses the Ubuntu 16.04 LTS marketplace image from Canonical and a VM Standard_D2S_V3 size.
18+
The Azure PowerShell module is used to create and manage Azure resources from the PowerShell command line or in scripts. This quickstart shows you how to use the Azure PowerShell module to create a Linux virtual machine (VM), create a Key Vault for the storage of encryption keys, and encrypt the VM. This quickstart uses the Ubuntu 16.04 LTS marketplace image from Canonical and a VM Standard_D2S_V3 size. However, any [ADE supported Linux image version](/azure/virtual-machines/linux/disk-encryption-overview#supported-operating-systems) could be used instead of an Ubuntu VM.
1919

2020
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
2121

@@ -52,7 +52,7 @@ New-AzKeyvault -name "<your-unique-keyvault-name>" -ResourceGroupName "myResourc
5252

5353
## Encrypt the virtual machine
5454

55-
Encrypt your VM with [Set-AzVmDiskEncryptionExtension](/powershell/module/az.compute/set-azvmdiskencryptionextension).
55+
Encrypt your VM with [Set-AzVmDiskEncryptionExtension](/powershell/module/az.compute/set-azvmdiskencryptionextension).
5656

5757
Set-AzVmDiskEncryptionExtension requires some values from your Key Vault object. You can obtain these values by passing the unique name of your key vault to [Get-AzKeyvault](/powershell/module/az.keyvault/get-azkeyvault).
5858

@@ -64,7 +64,7 @@ Set-AzVMDiskEncryptionExtension -ResourceGroupName MyResourceGroup -VMName "MyVM
6464

6565
After a few minutes the process will return the following:
6666

67-
```
67+
```output
6868
RequestId IsSuccessStatusCode StatusCode ReasonPhrase
6969
--------- ------------------- ---------- ------------
7070
True OK OK
@@ -78,7 +78,7 @@ Get-AzVmDiskEncryptionStatus -VMName MyVM -ResourceGroupName MyResourceGroup
7878

7979
When encryption is enabled, you will see the following in the returned output:
8080

81-
```
81+
```output
8282
OsVolumeEncrypted : EncryptionInProgress
8383
DataVolumesEncrypted : NotMounted
8484
OsVolumeEncryptionSettings : Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings

0 commit comments

Comments
 (0)