What is a resource group?
Give this one a try later!
A container that holds related resources for an Azure solution. It can
include all the resources for the solution, or only those resources that you
want to manage as a group. You decide how to allocate resources based
on what makes the most sense for your organization.
PowerShell What are Loops?
Give this one a try later!
, For, Do...While, For...Each, Depending on what form you use a loop causes
a command to repeat until a certain result is met, like you have created
enough machines.
What is a template?
Give this one a try later!
A JSON (JavaScript Object Notation) file that defines one or more
resources to deploy to a resource group. It also defines the dependencies
between the deployed resources. Can be used to deploy the resources
consistently and repeatedly.
What is the Azure CLI?
Give this one a try later!
A command-line program to connect to azure and execute administrative
commands on azure resources.
What is Azure Resource Manager?
Give this one a try later!
, A consistent management layer to perform tasks through Azure
PowerShell, Azure CLI, Azure portal, REST API, and client SDKs. The tasks
are passed through the same Azure Resource Manager API and
authenticates and authorizes requests through the service. Then they are
routed to the appropriate resource providers.
PowerShell How do you create an Azure Virtual Machine?
Give this one a try later!
New-AzVm
-ResourceGroupName <resource group into which the new vm will be
placed>
-Name <the name of the VM in Azure>
-Credential <an object containing the username and password for the VM
admin account. The Get-Credential cmdlet will prompt for a username and
password and package it into a credential object>
-Location <geographic location where the VM will be provisioned>
-Image <the operating system to use for the VM, a linux distro or windows
server>
What happens when you move a resource to another resource group or subscription?
Give this one a try later!
Both the source and target group are locked during the operation, write
and delete operations are blocked on the resource group until the move
completes.
How do you find the commands you need in Azure CLI?
Give this one a try later!
A container that holds related resources for an Azure solution. It can
include all the resources for the solution, or only those resources that you
want to manage as a group. You decide how to allocate resources based
on what makes the most sense for your organization.
PowerShell What are Loops?
Give this one a try later!
, For, Do...While, For...Each, Depending on what form you use a loop causes
a command to repeat until a certain result is met, like you have created
enough machines.
What is a template?
Give this one a try later!
A JSON (JavaScript Object Notation) file that defines one or more
resources to deploy to a resource group. It also defines the dependencies
between the deployed resources. Can be used to deploy the resources
consistently and repeatedly.
What is the Azure CLI?
Give this one a try later!
A command-line program to connect to azure and execute administrative
commands on azure resources.
What is Azure Resource Manager?
Give this one a try later!
, A consistent management layer to perform tasks through Azure
PowerShell, Azure CLI, Azure portal, REST API, and client SDKs. The tasks
are passed through the same Azure Resource Manager API and
authenticates and authorizes requests through the service. Then they are
routed to the appropriate resource providers.
PowerShell How do you create an Azure Virtual Machine?
Give this one a try later!
New-AzVm
-ResourceGroupName <resource group into which the new vm will be
placed>
-Name <the name of the VM in Azure>
-Credential <an object containing the username and password for the VM
admin account. The Get-Credential cmdlet will prompt for a username and
password and package it into a credential object>
-Location <geographic location where the VM will be provisioned>
-Image <the operating system to use for the VM, a linux distro or windows
server>
What happens when you move a resource to another resource group or subscription?
Give this one a try later!
Both the source and target group are locked during the operation, write
and delete operations are blocked on the resource group until the move
completes.
How do you find the commands you need in Azure CLI?