Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1 KB

File metadata and controls

44 lines (29 loc) · 1 KB

Delete an App Service Plan

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.