Skip to content

Commit 1cb6020

Browse files
authored
add new tabs
1 parent ef23e87 commit 1cb6020

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

articles/azure-functions/functions-how-to-use-azure-function-app-settings.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Configure function app settings in Azure Functions
33
description: Learn how to configure function app settings in Azure Functions.
44
ms.assetid: 81eb04f8-9a27-45bb-bf24-9ab6c30d205c
55
ms.topic: conceptual
6-
ms.date: 06/14/2024
6+
ms.date: 06/15/2024
77
ms.custom: cc996988-fb4f-47, devx-track-azurecli, devx-track-azurepowershell
88
---
99

@@ -159,7 +159,7 @@ az appservice plan list --query "[?id=='$appServicePlanId'].sku.tier" --output t
159159

160160
In the previous example replace `<RESOURCE_GROUP>` and `<FUNCTION_APP_NAME>` with the resource group and function app names, respective.
161161

162-
# [Azure PowerShell](#tab/azure-powershell)
162+
### [Azure PowerShell](#tab/azure-powershell)
163163

164164
Run the following Azure PowerShell command to get your hosting plan type:
165165

@@ -176,7 +176,7 @@ In the previous example replace `<RESOURCE_GROUP>` and `<FUNCTION_APP_NAME>` wit
176176

177177
## Plan migration
178178

179-
You can use either the Azure portal or Azure CLI commands to migrate a function app between a Consumption plan and a Premium plan on Windows. When migrating between plans, keep in mind the following considerations:
179+
You can migrate a function app between a Consumption plan and a Premium plan on Windows. When migrating between plans, keep in mind the following considerations:
180180

181181
+ Direct migration to a Dedicated (App Service) plan isn't currently supported.
182182
+ Migration isn't supported on Linux.
@@ -185,6 +185,24 @@ You can use either the Azure portal or Azure CLI commands to migrate a function
185185
+ Downtime in your function executions occurs as the function app is migrated between plans.
186186
+ State and other app-specific content is maintained, since the same Azure Files share is used by the app both before and after migration.
187187

188+
You can migrate your plan using these tools:
189+
190+
### [Portal](#tab/portal)
191+
192+
You can use the [Azure portal](https://portal.azure.com) to switch to a different plan.
193+
194+
### [Azure CLI](#tab/azure-cli)
195+
196+
You can use the Azure CLI commands to manually create a new plan, switch your app to use the new plan, and delete the original plan.
197+
198+
### [Azure PowerShell](#tab/azure-powershell)
199+
200+
You can use Azure PowerShell commands to manually create a new plan, switch your app to use the new plan, and delete the original plan.
201+
202+
---
203+
204+
Choose the direction of the migration for your app on Windows.
205+
188206
### [Consumption-to-Premium](#tab/to-premium/portal)
189207

190208
1. In the Azure portal, navigate to your Consumption plan app and choose **Change App Service plan** under **App Service plan**.

0 commit comments

Comments
 (0)