This example assumes you have previously completed the following examples:
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.
Do NOT forget to remove the resources once you are done running the example.