Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1.67 KB

File metadata and controls

53 lines (34 loc) · 1.67 KB

Delete a web application

appservice/delete-webapp/README.md

Prerequisites

This example assumes you have previously completed the following examples:

  1. Create an Azure Resource Group
  2. Deploy a web application on a managed Tomcat

Delete a web application

To delete the web application from Azure App Service use the following command line:

  az webapp delete --resource-group $RESOURCE_GROUP --name $APPSERVICE_TOMCAT_HELLOWORLD

If you want to make sure the web application has been removed, you can execute the following command. It should tell you the resource could not be found.

  az webapp show --resource-group $RESOURCE_GROUP --name $APPSERVICE_TOMCAT_HELLOWORLD

Note you can substitute $APPSERVICE_TOMCAT_HELLOWORLD with the name of any web application you want to delete in your resource group.

Cleanup

Do NOT forget to remove the resources once you are done running the example.