Syntax Flashcards
AZ powershell syntax for creating a resource group
New-AzResourceGroup
AZ powershell syntax for creating a VM
New-AzVm
AZ CLI syntax for creating a resource group
az group create
AZ CLI syntax for creating a VM
az vm create
AZ CLI syntax for creating an app service plan
az appservice plan create
AZ CLI syntax for creating a web app
az webapp create
AZ powershell syntax for creating an app service plan
New-AzAppServicePlan
AZ powershell syntax for creating a web app
New-AzWebApp
AZ powershell syntax for creating a function app
New-AzFunctionApp
AZ CLI syntax for creating a function app
az functionapp create
AZ powershell syntax for deploying ARM template (resource group level)
New-AzResourceGroupDeployment
AZ CLI syntax for deploying ARM template (resource group level with template file specified)
az deployment group create –template-file
AZ powershell syntax for creating container
New-AzContainerGroup
AZ CLI syntax for creating container
az container create
AZ powershell syntax for creating container registry
New-AzContainerRegistry
AZ CLI syntax for creating container registry
az acr create