diff --git a/pages/common/az-webapp.md b/pages/common/az-webapp.md new file mode 100644 index 000000000..3f27c79ab --- /dev/null +++ b/pages/common/az-webapp.md @@ -0,0 +1,21 @@ +# az webapp + +> Manage Web Applications hosted in Azure Cloud Services. +> Part of `azure-cli`. +> Mode information: . + +- List available runtimes for a web application: + +`az webapp list-runtimes --os-type {{windows|linux}}` + +- Create a web application: + +`az webapp up --name {{name}} --location {{location}} --runtime {{runtime}}` + +- List all web applications: + +`az webapp list` + +- Delete a specific web application: + +`az webapp delete --name {{name}} --resource-group {{resource_group}}`