1.1 - Virtual Machines Flashcards

1
Q

What is a Virtual Machine?

A

A service that cloud providers offer as IaaS It is a portion of a machine that is running in an Azure Data Center that you can control You can remote into it and install any software You pay for the time you use

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a benefit of using ARM Templates?

A

You can create resources using JSON templates and passing parameters You can automate resource creation and implement Desired State Configuration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a prerequisite for encrypting the operating system disk of a virtual machine?

A

You must have an encryption key inside an Azure Key Vault

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

If you are unable to connect from your computer to a Windows VM by RDP, what is the first thing you should check?

A

Check to see if port 3389 is open on the Network Security Group

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the default VM size that Azure wants to use when you create a VM?

A

Standard DS1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

You have to encrypt an existing virtual machine named “stagingvm”. This virtual machine is in a resource group named “staging”. A key name “vmkey” has been created in the Azure key vault for this purpose. Name or ID of the key vault is “demovault”. You have to complete the below Azure CLI command to ensure all disks on the virtual machine are encrypted with the key

What are the values of Area 1,2,3 and 4

A

Area 1: vm encryption

Area 2: –disk-encryption-keyvault

Area 3: –key-encryption-key

Area 4: All
Here the question specified to encrypt all of the volumes, we need to specify the “All” value. This will ensure that all disks on the machine are encrypted.

https://docs.microsoft.com/en-us/cli/azure/vm/encryption?view=azure-cli-latest

How well did you know this?
1
Not at all
2
3
4
5
Perfectly