I have an existing Azure function with Consumption plan, however, I need to move it to Premium Plan. While creating the function app, I selected linux for the OS.
So far, I created a premium plan and then running the following through azure-cli:
az functionapp update --name <name-of-the-app> --resource-group <resource-group> --plan <premium-plan>
and it gives me the following message:
This feature currently supports windows to windows plan migrations. For other migrations, please redeploy.
Question:
- Is there a way to update/move from consumption plan to premium plan without redeploying it?
- If not, and if the only option I have is to redeploy, is it possible to clone the functions from my existing app?