You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/migration/migrate-plan-consumption-to-flex.md
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Learn how to migrate an existing function app in Azure running in a
4
4
ms.service: azure-functions
5
5
ms.collection:
6
6
- migration
7
-
ms.date: 06/18/2025
7
+
ms.date: 06/23/2025
8
8
ms.topic: concept-article
9
9
10
10
#customer intent: As a developer, I want to learn how to migrate my existing serverless applications in Azure Functions from the Consumption host plan to the Flex Consumption hosting plan.
@@ -403,7 +403,7 @@ You should complete these tasks before you migrate your app to run in a Flex Con
@@ -581,7 +581,7 @@ Pay special attention to redirect URIs, allowed external redirects, and token se
581
581
582
582
#### [Azure CLI](#tab/azure-cli)
583
583
584
-
Use this [`az webapp auth show`](/cli/azure/webapp/auth?view=azure-cli-latest#az-webapp-auth-show) command to determine if [built-in authentication](../../app-service/overview-authentication-authorization.md) is configured in your function app:
584
+
Use this [`az webapp auth show`](/cli/azure/webapp/auth#az-webapp-auth-show) command to determine if [built-in authentication](../../app-service/overview-authentication-authorization.md) is configured in your function app:
585
585
586
586
```azurecli
587
587
az webapp auth show --name <APP_NAME> --resource-group <RESOURCE_GROUP>
@@ -1430,15 +1430,21 @@ In this example, replace `<RESOURCE_GROUP>` and `<APP_NAME>` with your resource
1430
1430
1431
1431
After a successful migration, you should perform these follow-up tasks:
> +[Remove the original app (optional)](#remove-the-original-app-optional)
1434
1440
1435
1441
### Verify basic functionality
1436
1442
1437
1443
1. Verify the new app is running in a Flex Consumption plan:
1438
1444
1439
1445
#### [Azure CLI](#tab/azure-cli)
1440
1446
1441
-
Use this [`az functionapp show`](/cli/azure/functionapp?view=azure-cli-latest#az-functionapp-show) command two view the details about the hosting plan:
1447
+
Use this [`az functionapp show`](/cli/azure/functionap#az-functionapp-show) command two view the details about the hosting plan:
1442
1448
1443
1449
```azurecli
1444
1450
az functionapp show --name <APP_NAME> --resource-group <RESOURCE_GROUP> --query "serverFarmId"
0 commit comments