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 Subscription1. You sign in to the Azure portal and create a resource group named RG1.
From Azure documentation, you have the following command that creates a virtual machine named VM1. az vm create --resource-group RG1 --name VM1 --image UbuntuLTS --generate-ssh-keys
You need to create VM1 in Subscription1 by using the command.
Solution: From the Azure portal, launch Azure Cloud Shell and select PowerShell. Run the command in Cloud Shell.
Does this meet the goal?
Click on the arrows to vote for the correct answer
A. B.A
The command can be run in the Azure Cloud Shell. Although this question says you select PowerShell rather than Bash, the Az commands will work in
PowerShell.
The Azure Cloud Shell is a free interactive shell. It has common Azure tools preinstalled and configured to use with your account.
To open the Cloud Shell, just select Try it from the upper right corner of a code block. You can also launch Cloud Shell in a separate browser tab by going to https://shell.azure.com/bash.
https://docs.microsoft.com/en-us/azure/virtual-machines/linux/quick-create-cliYes, the solution provided meets the goal of creating a virtual machine named VM1 in Subscription1 using the given command.
The command provided in the scenario is a Azure CLI command that creates a virtual machine in the specified resource group with the given name, VM1, and UbuntuLTS image. It also generates SSH keys for the virtual machine.
To execute this command, the solution suggests launching Azure Cloud Shell from the Azure portal and selecting PowerShell as the environment. Azure Cloud Shell provides a browser-based command-line interface for managing Azure resources. It also has the necessary Azure CLI and PowerShell modules pre-installed, so the user can run Azure commands directly from the Cloud Shell.
By running the provided command in the Azure Cloud Shell PowerShell environment, the virtual machine named VM1 will be created in the resource group RG1 in Subscription1, as specified in the command.
Therefore, the solution provided meets the goal of creating VM1 in Subscription1 using the provided command.