Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.27 KB

File metadata and controls

46 lines (30 loc) · 1.27 KB

Delete an App Service Plan

appservice/delete-plan/README.md

Prerequisites

This example assumes you have previously completed the following examples:

  1. Create an Azure Resource Group
  2. Create an Azure App Service Plan

Delete an App Service Plan

To delete the Azure App Service Plan use the following command line:

  az appservice plan delete \
    --resource-group $RESOURCE_GROUP \
    --name $APPSERVICE_PLAN \
    --yes

Cleanup

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