Skip to content

Commit 90e0bb3

Browse files
Update disk-encryption-powershell-quickstart.md
minor fixes to increase acrolinx score
1 parent 351e07f commit 90e0bb3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,22 @@ New-AzResourceGroup -Name "myResourceGroup" -Location "EastUS"
2929

3030
## Create a virtual machine
3131

32-
Create an Azure virtual machine with [New-AzVM](/powershell/module/az.compute/new-azvm), passing to it the VM configuration object you created above.
32+
Create an Azure virtual machine with [New-AzVM](/powershell/module/az.compute/new-azvm), passing to it the VM configuration object you created in the previous step.
3333

3434
```powershell-interactive
3535
$cred = Get-Credential
3636
3737
New-AzVM -Name MyVm -Credential $cred -ResourceGroupName MyResourceGroup -Image Canonical:UbuntuServer:18.04-LTS:latest -Size Standard_D2S_V3
3838
```
3939

40-
It will take a few minutes for your VM to be deployed.
40+
It takes a few minutes for your VM to be deployed.
4141

4242
## Create a Key Vault configured for encryption keys
4343

4444
Azure disk encryption stores its encryption key in an Azure Key Vault. Create a Key Vault with [New-AzKeyvault](/powershell/module/az.keyvault/new-azkeyvault). To enable the Key Vault to store encryption keys, use the -EnabledForDiskEncryption parameter.
4545

4646
> [!Important]
47-
> Every key vault must have a name that is unique across Azure. In the examples below, replace \<your-unique-keyvault-name\> with the name you choose.
47+
> Every key vault must have a name that is unique across Azure. In the following example, replace \<your-unique-keyvault-name\> with the name you choose.
4848
4949
```azurepowershell-interactive
5050
New-AzKeyvault -name "<your-unique-keyvault-name>" -ResourceGroupName "myResourceGroup" -Location EastUS -EnabledForDiskEncryption

0 commit comments

Comments
 (0)