You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-machines/linux/disk-encryption-cli-quickstart.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ It takes a few minutes to create the VM and supporting resources. The following
62
62
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.
63
63
64
64
> [!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.
66
66
67
67
```azurecli-interactive
68
68
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
76
76
az vm encryption enable -g "MyResourceGroup" --name "myVM" --disk-encryption-keyvault "<your-unique-keyvault-name>"
77
77
```
78
78
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).
80
80
81
81
```azurecli-interactive
82
82
az vm encryption show --name "myVM" -g "MyResourceGroup"
83
83
```
84
84
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:
86
86
87
87
```
88
88
"EncryptionOperation": "EnableEncryption"
@@ -98,7 +98,7 @@ az group delete --name "myResourceGroup"
98
98
99
99
## Next steps
100
100
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.
102
102
103
103
> [!div class="nextstepaction"]
104
104
> [Azure Disk Encryption overview](disk-encryption-overview.md)
Copy file name to clipboardExpand all lines: articles/virtual-machines/linux/disk-encryption-isolated-network.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,13 +20,13 @@ When connectivity is restricted by a firewall, proxy requirement, or network sec
20
20
21
21
## Package management
22
22
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.
24
24
25
25
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).
@@ -46,7 +46,7 @@ When encryption is being enabled with [Azure AD credentials](disk-encryption-lin
46
46
47
47
### Azure Instance Metadata Service
48
48
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.
Copy file name to clipboardExpand all lines: articles/virtual-machines/linux/disk-encryption-key-vault.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ You may also, if you wish, generate or import a key encryption key (KEK).
40
40
41
41
## Install tools and connect to Azure
42
42
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).
44
44
45
45
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.
0 commit comments