Skip to content

Commit 3a6e797

Browse files
committed
fix remaining issues
1 parent 8070378 commit 3a6e797

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

articles/azure-functions/migration/migrate-plan-consumption-to-flex.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to migrate an existing function app in Azure running in a
44
ms.service: azure-functions
55
ms.collection:
66
- migration
7-
ms.date: 06/18/2025
7+
ms.date: 06/23/2025
88
ms.topic: concept-article
99

1010
#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
403403
> + [Identify client authentication settings](#identify-client-authentication-settings)
404404
> + [Review inbound access restrictions](#review-inbound-access-restrictions)
405405
> + [Get the code deployment package](#get-the-code-deployment-package)
406-
> + [Capture performance benchmarks](#capture-performance-benchmarks)
406+
> + [Capture performance benchmarks](#capture-performance-benchmarks-optional)
407407
408408
### Collect app settings
409409

@@ -581,7 +581,7 @@ Pay special attention to redirect URIs, allowed external redirects, and token se
581581

582582
#### [Azure CLI](#tab/azure-cli)
583583

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:
585585

586586
```azurecli
587587
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
14301430

14311431
After a successful migration, you should perform these follow-up tasks:
14321432

1433-
1433+
> [!div class="checklist"]
1434+
> + [Verify basic functionality](#verify-basic-functionality)
1435+
> + [Enable monitoring](#enable-monitoring)
1436+
> + [Capture performance benchmarks](#capture-performance-benchmarks)
1437+
> + [Create custom dashboards](#create-custom-dashboards)
1438+
> + [Refine plan settings](#refine-plan-settings)
1439+
> + [Remove the original app (optional)](#remove-the-original-app-optional)
14341440
14351441
### Verify basic functionality
14361442

14371443
1. Verify the new app is running in a Flex Consumption plan:
14381444

14391445
#### [Azure CLI](#tab/azure-cli)
14401446

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:
14421448

14431449
```azurecli
14441450
az functionapp show --name <APP_NAME> --resource-group <RESOURCE_GROUP> --query "serverFarmId"

0 commit comments

Comments
 (0)