Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 2.23 KB

powershell-scale-manual.md

File metadata and controls

50 lines (34 loc) · 2.23 KB
title description author tags ms.assetid ms.topic ms.date ms.author ms.custom
PowerShell: Scale a web app manually
Learn how to use Azure PowerShell to automate deployment and management of App Service. This sample shows how to scale an app manually.
msangapu-msft
azure-service-management
de5d4285-9c7d-4735-a695-288264047375
sample
12/06/2022
msangapu
mvc, devx-track-azurepowershell

Scale a web app manually using PowerShell

In this scenario you will learn to create a resource group, app service plan and web app. You will then scale the App Service Plan from a single instance to multiple instances.

If needed, install the Azure PowerShell using the instruction found in the Azure PowerShell guide, and then run Connect-AzAccount to create a connection with Azure.

Sample script

[!INCLUDE updated-for-az]

[!code-azurepowershell-interactivemain]

Clean up deployment

After the script sample has been run, the following command can be used to remove the resource group, web app, and all related resources.

Remove-AzResourceGroup -Name $ResourceGroupName -Force

Script explanation

This script uses the following commands. Each command in the table links to command specific documentation.

Command Notes
New-AzResourceGroup Creates a resource group in which all resources are stored.
New-AzAppServicePlan Creates an App Service plan.
Set-AzAppServicePlan Modifies an App Service plan's configuration.
New-AzWebApp Creates a web app.
Set-AzWebApp Modifies a web app's configuration.

Next steps

For more information on the Azure PowerShell module, see Azure PowerShell documentation.

Additional Azure PowerShell samples for Azure App Service Web Apps can be found in the Azure PowerShell samples.