This example assumes you have previously completed the following example:
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
Do NOT forget to remove the resources once you are done running the example.
If you want to use Terraform please see the snippets below:
1m