Skip to content

Latest commit

 

History

History
73 lines (48 loc) · 1.71 KB

File metadata and controls

73 lines (48 loc) · 1.71 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=joaz-asp

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 P1v3

Cleanup

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

Terraform snippets

If you want to use Terraform please see the snippets below:

1m