Files
tldr/pages/common/az-webapp.md
K.B.Dharun Krishna f1aa0a8fe5 Revert "pages/*: add standard translation and links (#11331)" (#11374)
This reverts commit 39642c3fed80aaed7212bca6b7cc4c345ed229ee.
2023-11-06 14:02:32 +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}}