Skip to content

Commit 789ad48

Browse files
committed
Updates
1 parent 324de90 commit 789ad48

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ It takes a few minutes to create the VM and supporting resources. The following
6262
Azure disk encryption stores its encryption key in an Azure Key Vault. Create a Key Vault with [az keyvault create](/cli/azure/keyvault#az-keyvault-create). To enable the Key Vault to store encryption keys, use the --enabled-for-disk-encryption parameter.
6363

6464
> [!Important]
65-
> 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.
65+
> Every key vault must have a name that is unique across Azure. Replace \<your-unique-keyvault-name\> with the name you choose.
6666
6767
```azurecli-interactive
6868
az keyvault create --name "<your-unique-keyvault-name>" --resource-group "myResourceGroup" --location "eastus" --enabled-for-disk-encryption
@@ -76,13 +76,13 @@ Encrypt your VM with [az vm encryption](/cli/azure/vm/encryption), providing you
7676
az vm encryption enable -g "MyResourceGroup" --name "myVM" --disk-encryption-keyvault "<your-unique-keyvault-name>"
7777
```
7878

79-
After a moment the process will return, "The encryption request was accepted. Please use 'show' command to monitor the progress.". The "show" command is [az vm show](/cli/azure/vm/encryption#az-vm-encryption-show).
79+
After a moment the process will return, "The encryption request was accepted. Use 'show' command to monitor the progress.". The "show" command is [az vm show](/cli/azure/vm/encryption#az-vm-encryption-show).
8080

8181
```azurecli-interactive
8282
az vm encryption show --name "myVM" -g "MyResourceGroup"
8383
```
8484

85-
When encryption is enabled, you will see the following in the returned output:
85+
When encryption is enabled, you will see "EnableEncryption" in the returned output:
8686

8787
```
8888
"EncryptionOperation": "EnableEncryption"
@@ -98,7 +98,7 @@ az group delete --name "myResourceGroup"
9898

9999
## Next steps
100100

101-
In this quickstart, you created a virtual machine, created a Key Vault that was enable for encryption keys, and encrypted the VM. Advance to the next article to learn more about more Azure Disk Encryption for Linux VMs.
101+
In this quickstart, you created a virtual machine, created a Key Vault that was enabled for encryption keys, and encrypted the VM. Advance to the next article to learn more about more Azure Disk Encryption for Linux VMs.
102102

103103
> [!div class="nextstepaction"]
104104
> [Azure Disk Encryption overview](disk-encryption-overview.md)

articles/virtual-machines/linux/disk-encryption-faq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
ms.subservice: disks
99
ms.topic: faq
1010
ms.author: mbaldwin
11-
ms.date: 06/05/2019
11+
ms.date: 01/04/2023
1212
ms.custom: seodec18
1313
title: Azure Disk Encryption for Linux virtual machines FAQ
1414
summary: |

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ When connectivity is restricted by a firewall, proxy requirement, or network sec
2020

2121
## Package management
2222

23-
Azure Disk Encryption depends on a number of components, which are typically installed as part of ADE enablement if not already present. When behind a firewall or otherwise isolated from the Internet, these packages must be pre-installed or available locally.
23+
Azure Disk Encryption depends on many components, which are typically installed as part of ADE enablement if not already present. When behind a firewall or otherwise isolated from the Internet, these packages must be pre-installed or available locally.
2424

2525
Here are the packages necessary for each distribution. For a full list of supported distros and volume types, see [supported VMs and operating systems](disk-encryption-overview.md#supported-vms-and-operating-systems).
2626

2727
- **Ubuntu 14.04, 16.04, 18.04**: lsscsi, psmisc, at, cryptsetup-bin, python-parted, python-six, procps, grub-pc-bin
2828
- **CentOS 7.2 - 7.9, 8.1, 8.2**: lsscsi, psmisc, lvm2, uuid, at, patch, cryptsetup, cryptsetup-reencrypt, pyparted, procps-ng, util-linux
29-
- **CentOS 6.8**: lsscsi, psmisc, lvm2, uuid, at, cryptsetup-reencrypt, pyparted, python-six
29+
- **CentOS 6.8**: lsscsi, psmisc, lvm2, uuid, at, cryptsetup-reencrypt, parted, python-six
3030
- **RedHat 7.2 - 7.9, 8.1, 8.2**: lsscsi, psmisc, lvm2, uuid, at, patch, cryptsetup, cryptsetup-reencrypt, procps-ng, util-linux
3131
- **RedHat 6.8**: lsscsi, psmisc, lvm2, uuid, at, patch, cryptsetup-reencrypt
3232
- **openSUSE 42.3, SLES 12-SP4, 12-SP3**: lsscsi, cryptsetup
@@ -46,7 +46,7 @@ When encryption is being enabled with [Azure AD credentials](disk-encryption-lin
4646

4747
### Azure Instance Metadata Service
4848

49-
The virtual machine must be able to access the [Azure Instance Metadata service](instance-metadata-service.md) endpoint, which uses a well-known non-routable IP address (`169.254.169.254`) that can be accessed only from within the VM. Proxy configurations that alter local HTTP traffic to this address (for example, adding an X-Forwarded-For header) are not supported.
49+
The virtual machine must be able to access the [Azure Instance Metadata service](instance-metadata-service.md) endpoint, which uses a well-known non-routable IP address (`169.254.169.254`) that can be accessed only from within the VM. Proxy configurations that alter local HTTP traffic to this address (for example, adding an X-Forwarded-For header) aren't supported.
5050

5151
## Next steps
5252

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ You may also, if you wish, generate or import a key encryption key (KEK).
4040
4141
## Install tools and connect to Azure
4242

43-
The steps in this article can be completed with the [Azure CLI](/cli/azure/), the [Azure PowerShell Az module](/powershell/azure/), or the [Azure portal](https://portal.azure.com).
43+
The steps in this article can be completed with the [Azure CLI](/cli/azure/), the [Azure PowerShell Az PowerShell module module](/powershell/azure/), or the [Azure portal](https://portal.azure.com).
4444

4545
While the portal is accessible through your browser, Azure CLI and Azure PowerShell require local installation; see [Azure Disk Encryption for Linux: Install tools](disk-encryption-linux.md#install-tools-and-connect-to-azure) for details.
4646

0 commit comments

Comments
 (0)