Skip to content

Instantly share code, notes, and snippets.

@AngelGarcia13
Created January 31, 2021 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AngelGarcia13/bda8d7277710b6ba59c7aa7a31497737 to your computer and use it in GitHub Desktop.
Save AngelGarcia13/bda8d7277710b6ba59c7aa7a31497737 to your computer and use it in GitHub Desktop.
az --help
az login
az account list --output table
az account set --subscription your-subscription-id
az group create --name dev-az --location "West Europe"
az appservice plan create --name dev-az-sp --resource-group dev-az --sku F1 --is-linux
az webapp create --resource-group dev-az --plan dev-az-sp --name helloworldazurefirstapp --runtime "DOTNETCORE|3.1"
az webapp list-runtimes
az webapp list-runtimes --linux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment