LinuxCommandLibrary

az-webapp

Manage Web Applications hosted in Azure Cloud Services.

TLDR

List available runtimes for a web application

$ az webapp list-runtimes --os-type [windows|linux]
copy


Create a web application
$ az webapp up --name [name] --location [location] --runtime [runtime]
copy


List all web applications
$ az webapp list
copy


Delete a specific web application
$ az webapp delete --name [name] --resource-group [resource_group]
copy

Copied to clipboard