Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 817 Bytes

create-azure-app-plan.md

File metadata and controls

17 lines (12 loc) · 817 Bytes
  1. Create an Azure App Service plan.

    For example, you can use the Azure CLI to create a new App Service plan:

    az appservice plan create \
       --resource-group MY_RESOURCE_GROUP \
       --name MY_APP_SERVICE_PLAN \
       --is-linux

    In the command above, replace MY_RESOURCE_GROUP with your pre-existing Azure Resource Group, and MY_APP_SERVICE_PLAN with a new name for the App Service plan.

    See the Azure documentation for more information on using the Azure CLI: