Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1.49 KB

File metadata and controls

58 lines (40 loc) · 1.49 KB

Create an App Service Plan

appservice/create-plan/README.md

Prerequisites

This example assumes you have previously completed the following example:

  1. Create an Azure Resource Group

Create an App Service Plan

First, create the environment variable used for our App Service Plan using the command line below:

  export APPSERVICE_PLAN=csoaz-asp-$RANDOM

Then, create the App Service Plan using the following command line:

  az appservice plan create \
    --resource-group $RESOURCE_GROUP \
    --location $REGION \
    --name $APPSERVICE_PLAN \
    --is-linux \
    --sku P2v3

Cleanup

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

1m