Azure-Divers
How to change Azure Functions from Consumption Plan to Apps Service Plan?
Today we try change the Consumption Plan to Apps Service Plan, I remark, when you create a Consumption Plan from Azure, you have not possibilities to change to any other Plan, and I found it how !
What if I share it with you ?
Infrastructure
Currently we have one Function App in Consumption Plan :
And we can saw, the function app is available:
Move
You can look the service Plan is Consumption Plan:
Now, we put this commande on Cloud Shell:
Set-AzAppServicePlan -ResourceGroupName « your-ResourceGroup » -Name « Name-of-Service-Plan » -PerSiteScaling $true -tier B1 (it’s for dev-test)
And if I back on the service Plan
Always functional:
Thanks very nice blog!