Files
tldr/pages/common/az-webapp.md
Sebastiaan Speck 3e53d171bd az-*: update links and page description (#10963)
* az-*: update links and page description

* az-aks: update link and page description

* az-*: fix typos in Spanish translation

* az-*: update links and description in Spanish translation
2023-10-15 13:12:29 +05:30

553 B

az webapp

Manage Web Applications hosted in Azure Cloud Services. Part of azure-cli (also known as az). Mode information: https://learn.microsoft.com/cli/azure/webapp.

  • 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}}