Forum Discussion
sowndark11
Jun 08, 2023Copper Contributor
poweshell script to create app service plan for P1mv3
Hi team, we are trying to create an Azure app service plan using Power shell script with pricing tier Premium p1mV3, but always creating as Premium P1 and the same issue happens while we creating Pre...
Kidd_Ip
Jan 19, 2026MVP
Take this:
# Create Premium v3 P1mv3 App Service Plan
New-AzAppServicePlan `
-Name "app-service-plan-name" `
-ResourceGroupName "rg-name" `
-Location "East US" `
-Tier "PremiumV3" `
-Sku "P1mv3" `
-NumberofWorkers 1 `
-WorkerSize Small
# Create Premium v3 P0v3 App Service Plan
New-AzAppServicePlan `
-Name "app-service-plan-name-p0" `
-ResourceGroupName "rg-name" `
-Location "East US" `
-Tier "PremiumV3" `
-Sku "P0v3" `
-NumberofWorkers 1 `
-WorkerSize Small