Which three actions should you perform in sequence?

DRAG DROP
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an Azure Subscription named Sub1. Sub1 contains an Azure virtual machine named VM1 that runs Windows Server 2016.
You need to encrypt VM1 disks by using Azure Disk Encryption.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
Select and Place:

microsoft-exams

One thought on “Which three actions should you perform in sequence?

  1. 1. Create a resource group with the 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:

    az group create –name myResourceGroup –location eastus

    2. Create a Key Vault configured for encryption keys

    Azure disk encryption stores its encryption key in an Azure Key Vault. Create a Key Vault with az keyvault create. To enable the Key Vault to store encryption keys, use the –enabled-for-disk-encryption parameter.

    az keyvault create –name “myKV” –resource-group “myResourceGroup” –location eastus –enabled-for-disk-encryption

    3. Encrypt the virtual machine

    Encrypt your VM with az vm encryption, providing your unique Key Vault name to the –disk-encryption-keyvault parameter.
    Azure CLI

    az vm encryption enable -g MyResourceGroup –name MyVM –disk-encryption-keyvault myKV

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.