Author : MD TAREQ HASSAN | Updated : 2020/11/18

What is App Service Plan?

What does App Service Plan do?

Pricing

https://azure.microsoft.com/en-us/pricing/details/app-service/windows/

Creating app service plan using Azure portal

Create App Service Plan using Azure portal Step 1

Create App Service Plan using Azure portal Step 2

Create App Service Plan using Azure portal Step 3

Create App Service Plan using Azure portal Step 4

Create App Service Plan using Azure portal Step 5

Upgrading app service plan using Azure portal

Upgrading App Service Plan Step 1

Upgrading App Service Plan Step 2

Creating App service plan using PowerShell

# Create resource group
New-AzResourceGroup -Name "demo-rg" -Location "Japan East"


# Create app service plan
New-AzAppServicePlan -ResourceGroupName "demo-rg" -Name "demo-asp" -Location "Japan East" -Tier "Standard"

Upgrading App service plan using PowerShell

# Upgrade app service plan
# Basic -> Standard
Set-AzAppServicePlan -Name "demo-asp" -ResourceGroupName 'demo-rg' -Tier Standard

Scalling