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 specified command.
The solution suggests using the Azure Cloud Shell to run the command in PowerShell. The Azure Cloud Shell is an interactive shell environment that provides access to the Azure CLI (Command-Line Interface) or PowerShell commands directly from the Azure portal, without the need for any local installations. The user can choose between using PowerShell or Bash as the default shell environment.
By launching Azure Cloud Shell and selecting PowerShell, the user can easily run the command to create the virtual machine named VM1, as per the instructions provided in the scenario. The user needs to ensure that they are logged in to the correct subscription before executing the command.
Overall, the proposed solution is a valid approach to creating the virtual machine in the desired resource group and subscription, and it meets the requirements stated in the scenario.