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/backup/backup-azure-vms-encryption.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
@@ -49,7 +49,7 @@ Azure Backup can back up and restore Azure VMs using ADE with and without the Az
49
49
50
50
Before you start, do the following:
51
51
52
-
1. Make sure you have one or more [Windows](../security/azure-security-disk-encryption-windows.md) or [Linux](../security/azure-security-disk-encryption-linux.md) VMs with ADE enabled.
52
+
1. Make sure you have one or more [Windows](../security/azure-security-disk-encryption-windows.md) or [Linux](../virtual-machines/linux/disk-encryption-overview.md) VMs with ADE enabled.
53
53
2.[Review the support matrix](backup-support-matrix-iaas.md) for Azure VM backup
54
54
3.[Create](backup-azure-arm-vms-prepare.md#create-a-vault) a Recovery Services Backup vault if you don't have one.
55
55
4. If you enable encryption for VMs that are already enabled for backup, you simply need to provide Backup with permissions to access the Key Vault so that backups can continue without disruption. [Learn more](#provide-permissions) about assigning these permissions.
Copy file name to clipboardExpand all lines: articles/security-center/security-center-apply-disk-encryption.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
@@ -38,7 +38,7 @@ To encrypt Azure Virtual Machines that have been identified by Security Center a
38
38
* Obtain and run the Azure Disk Encryption Prerequisites Azure PowerShell script.
39
39
* Encrypt your virtual machines.
40
40
41
-
[Encrypt a Windows IaaS VM with Azure PowerShell](../security/azure-disk-encryption-linux-powershell-quickstart.md) walks you through these steps. This topic assumes you are using a Windows client machine from which you configure disk encryption.
41
+
[Encrypt a Windows IaaS VM with Azure PowerShell](../virtual-machines/linux/disk-encryption-powershell-quickstart.md) walks you through these steps. This topic assumes you are using a Windows client machine from which you configure disk encryption.
42
42
43
43
There are many approaches that can be used for Azure Virtual Machines. If you are already well-versed in Azure PowerShell or Azure CLI, then you may prefer to use alternate approaches. To learn about these other approaches, see [Azure disk encryption](../security/azure-security-disk-encryption.md).
Copy file name to clipboardExpand all lines: articles/security/azure-security-disk-encryption-appendix.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
@@ -101,7 +101,7 @@ Before you start, review the [Prerequisites](azure-security-disk-encryption-prer
101
101
```
102
102
103
103
### <a name="bkmk_prereq-script"></a> Using the Azure Disk Encryption prerequisites PowerShell script
104
-
If you're already familiar with the prerequisites for Azure Disk Encryption, you can use the [Azure Disk Encryption prerequisites PowerShell script](https://raw.githubusercontent.com/Azure/azure-powershell/master/src/Compute/Compute/Extension/AzureDiskEncryption/Scripts/AzureDiskEncryptionPreRequisiteSetup.ps1 ). For an example of using this PowerShell script, see the [Encrypt a VM Quickstart](azure-disk-encryption-linux-powershell-quickstart.md). You can remove the comments from a section of the script, starting at line 211, to encrypt all disks for existing VMs in an existing resource group.
104
+
If you're already familiar with the prerequisites for Azure Disk Encryption, you can use the [Azure Disk Encryption prerequisites PowerShell script](https://raw.githubusercontent.com/Azure/azure-powershell/master/src/Compute/Compute/Extension/AzureDiskEncryption/Scripts/AzureDiskEncryptionPreRequisiteSetup.ps1 ). For an example of using this PowerShell script, see the [Encrypt a VM Quickstart](../virtual-machines/linux/disk-encryption-powershell-quickstart.md). You can remove the comments from a section of the script, starting at line 211, to encrypt all disks for existing VMs in an existing resource group.
105
105
106
106
The following table shows which parameters can be used in the PowerShell script:
Copy file name to clipboardExpand all lines: articles/security/azure-security-disk-encryption-prerequisites.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
@@ -177,7 +177,7 @@ The [Azure CLI 2.0](/cli/azure) is a command-line tool for managing Azure resour
177
177
178
178
179
179
## Prerequisite workflow for Key Vault
180
-
If you're already familiar with the Key Vault and Azure AD prerequisites for Azure Disk Encryption, you can use the [Azure Disk Encryption prerequisites PowerShell script](https://raw.githubusercontent.com/Azure/azure-powershell/master/src/Compute/Compute/Extension/AzureDiskEncryption/Scripts/AzureDiskEncryptionPreRequisiteSetup.ps1 ). For more information on using the prerequisites script, see the [Encrypt a VM Quickstart](azure-disk-encryption-linux-powershell-quickstart.md) and the [Azure Disk Encryption Appendix](azure-security-disk-encryption-appendix.md#bkmk_prereq-script).
180
+
If you're already familiar with the Key Vault and Azure AD prerequisites for Azure Disk Encryption, you can use the [Azure Disk Encryption prerequisites PowerShell script](https://raw.githubusercontent.com/Azure/azure-powershell/master/src/Compute/Compute/Extension/AzureDiskEncryption/Scripts/AzureDiskEncryptionPreRequisiteSetup.ps1 ). For more information on using the prerequisites script, see the [Encrypt a VM Quickstart](../virtual-machines/linux/disk-encryption-powershell-quickstart.md) and the [Azure Disk Encryption Appendix](azure-security-disk-encryption-appendix.md#bkmk_prereq-script).
If you choose to install and use the CLI locally, this quickstart requires that you are running the Azure CLI version 2.0.30 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI](/cli/azure/install-azure-cli).
20
20
@@ -23,7 +23,7 @@ If you choose to install and use the CLI locally, this quickstart requires that
23
23
Create a resource group with the [az group create](/cli/azure/group?view=azure-cli-latest#az-group-create) command. An Azure resource group is a logical container into which Azure resources are deployed and managed. The following example creates a resource group named *myResourceGroup* in the *eastus* location:
24
24
25
25
```azurecli-interactive
26
-
az group create --name myResourceGroup --location eastus
26
+
az group create --name "myResourceGroup" --location "eastus"
27
27
```
28
28
29
29
## Create a virtual machine
@@ -32,10 +32,11 @@ Create a VM with [az vm create](https://docs.microsoft.com/cli/azure/vm?view=azu
It takes a few minutes to create the VM and supporting resources. The following example output shows the VM create operation was successful.
@@ -58,24 +59,24 @@ It takes a few minutes to create the VM and supporting resources. The following
58
59
Azure disk encryption stores its encryption key in an Azure Key Vault. Create a Key Vault with [az keyvault create](/cli/azure/keyvault?view=azure-cli-latest#az-keyvault-create). To enable the Key Vault to store encryption keys, use the --enabled-for-disk-encryption parameter.
59
60
60
61
> [!Important]
61
-
> Each Key Vault must have a unique name. The following example creates a Key Vault named *myKV*, but you must name yours something different.
62
+
> 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.
62
63
63
-
```azurecli
64
-
az keyvault create --name "myKV" --resource-group "myResourceGroup" --location eastus --enabled-for-disk-encryption
64
+
```azurecli-interactive
65
+
az keyvault create --name "<your-unique-keyvault-name>" --resource-group "myResourceGroup" --location "eastus" --enabled-for-disk-encryption
65
66
```
66
67
67
68
## Encrypt the virtual machine
68
69
69
70
Encrypt your VM with [az vm encryption](/cli/azure/vm/encryption?view=azure-cli-latest), providing your unique Key Vault name to the --disk-encryption-keyvault parameter.
70
71
71
72
```azurecli-interactive
72
-
az vm encryption enable -g MyResourceGroup --name MyVM --disk-encryption-keyvault myKV
73
+
az vm encryption enable -g "MyResourceGroup" --name "myVM" --disk-encryption-keyvault "<your-unique-keyvault-name>"
73
74
```
74
75
75
76
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).
76
77
77
78
```azurecli-interactive
78
-
az vm show --name MyVM -g MyResourceGroup
79
+
az vm show --name "myVM" -g "MyResourceGroup"
79
80
```
80
81
81
82
When encryption is enabled, you will see the following in the returned output:
@@ -89,12 +90,12 @@ When encryption is enabled, you will see the following in the returned output:
89
90
When no longer needed, you can use the [az group delete](/cli/azure/group) command to remove the resource group, VM, and Key Vault.
90
91
91
92
```azurecli-interactive
92
-
az group delete --name myResourceGroup
93
+
az group delete --name "myResourceGroup"
93
94
```
94
95
95
96
## Next steps
96
97
97
-
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 Azure Disk Encryption prerequisites for IaaS VMs.
98
+
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.
98
99
99
100
> [!div class="nextstepaction"]
100
-
> [Azure Disk Encryption prerequisites](azure-security-disk-encryption-prerequisites.md)
101
+
> [Azure Disk Encryption overview](disk-encryption-overview.md)
0 commit comments