Skip to content

Commit 8986ba6

Browse files
committed
Add lightbox
1 parent ad10a53 commit 8986ba6

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 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.service: azure-functions
55
ms.topic: how-to
6-
ms.date: 06/26/2024
6+
ms.date: 07/02/2024
77
ms.custom: cc996988-fb4f-47, devx-track-azurecli, devx-track-azurepowershell
88
ms.assetid: 81eb04f8-9a27-45bb-bf24-9ab6c30d205c
99
---
@@ -26,15 +26,15 @@ To view the app settings in your function app, follow these steps:
2626

2727
2. In the left pane of your function app, expand **Settings**, select **Environment variables**, and then select the **App settings** tab.
2828

29-
:::image type="content" source="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-main.png" alt-text="Screen shot that how to select the App settings page in a function app.":::
29+
:::image type="content" source="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-main.png" alt-text="Screen shot that how to select the App settings page in a function app." lightbox="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-main.png":::
3030

3131
## <a name="settings"></a>Work with application settings
3232

3333
In addition to the predefined app settings used by Azure Functions, you can create any number of app settings, as required by your function code. For more information, see [App settings reference for Azure Functions](functions-app-settings.md).
3434

3535
These settings are stored encrypted. For more information, see [App settings security](security-concepts.md#application-settings).
3636

37-
You can manage app settings from the [Azure portal](functions-how-to-use-azure-function-app-settings.md?tabs=portal#settings), and by using the [Azure CLI](functions-how-to-use-azure-function-app-settings.md?tabs=azurecli#settings) and [Azure PowerShell](functions-how-to-use-azure-function-app-settings.md?tabs=powershell#settings). You can also manage app settings from [Visual Studio Code](functions-develop-vs-code.md#application-settings-in-azure) and from [Visual Studio](functions-develop-vs.md#function-app-settings).
37+
You can manage app settings from the [Azure portal](functions-how-to-use-azure-function-app-settings.md?tabs=portal#settings), and by using the [Azure CLI](functions-how-to-use-azure-function-app-settings.md?tabs=azurecli#settings) and [Azure PowerShell](functions-how-to-use-azure-function-app-settings.md?tabs=powershell#settings). You can also manage app settings from [Visual Studio Code](functions-develop-vs-code.md#application-settings-in-azure) and from [Visual Studio](functions-develop-vs.md#function-app-settings).
3838

3939
### [Azure portal](#tab/portal)
4040

@@ -46,7 +46,7 @@ The **App settings** tab maintains settings that are used by your function app:
4646

4747
1. To add a setting, select **+ Add**, and then enter the **Name** and **Value** of the new key-value pair.
4848

49-
:::image type="content" source="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-settings-tab.png" alt-text="Screen shot that shows the App settings page in a function app.":::
49+
:::image type="content" source="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-settings-tab.png" alt-text="Screen shot that shows the App settings page in a function app." lightbox="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-settings-tab.png":::
5050

5151
### [Azure CLI](#tab/azure-cli)
5252

@@ -144,11 +144,11 @@ The following values indicate the plan type:
144144

145145
### [Azure portal](#tab/portal)
146146

147-
To determine the type of plan used by your function app, see the **App Service Plan** in the **Overview** page of the function app in the [Azure portal](https://portal.azure.com).
147+
1. To determine the type of plan used by your function app, see the **App Service Plan** in the **Overview** page of the function app in the [Azure portal](https://portal.azure.com).
148148

149-
To see the pricing tier, select the name of the **App Service Plan**, and then select **Settings > Properties** from the left pane.
149+
![Screenshot that shows the App Service Plan link on the Overview page of a function app.](./media/functions-scale/function-app-overview-portal.png)
150150

151-
![Screenshot that shows the App Service Plan link on the Overview page of a function app.](./media/functions-scale/function-app-overview-portal.png)
151+
1. To see the pricing tier, select the name of the **App Service Plan**, and then select **Settings > Properties** from the left pane.
152152

153153
### [Azure CLI](#tab/azure-cli)
154154

@@ -444,7 +444,7 @@ Function apps run in the Azure App Service platform, which maintains them. As su
444444
445445
The following matrix indicates portal feature support by hosting plan and operating system:
446446
447-
| Feature | Consumption plan | Premium plan | Dedicated plan |
447+
| Feature | Consumption plan | Premium plan | Dedicated plan |
448448
| --- | --- | --- | --- |
449449
| [Advanced tools (Kudu)](#kudu) | Windows: ✔ <br/>Linux: **X** | ✔ | ✔|
450450
| [App Service editor](#editor) | Windows: ✔ <br/>Linux: **X** | Windows: ✔ <br/>Linux: **X** | Windows: ✔ <br/>Linux: **X**|
@@ -464,18 +464,18 @@ For more information about how to work with App Service settings, see [Configure
464464
465465
### <a name="editor"></a>App Service editor
466466
467-
![Screenshot that shows the App Service editor.](./media/functions-how-to-use-azure-function-app-settings/configure-function-app-appservice-editor.png)
467+
The App Service editor is an advanced in-portal editor that you can use to modify JSON configuration files and code files alike. Choosing this option launches a separate browser tab with a basic editor. This editor enables you to integrate with the Git repository, run and debug code, and modify function app settings. This editor provides an enhanced development environment for your functions compared with the built-in function editor.
468468
469-
The App Service editor is an advanced in-portal editor that you can use to modify JSON configuration files and code files alike. Choosing this option launches a separate browser tab with a basic editor. This editor enables you to integrate with the Git repository, run and debug code, and modify function app settings. This editor provides an enhanced development environment for your functions compared with the built-in function editor.
469+
![Screenshot that shows the App Service editor.](./media/functions-how-to-use-azure-function-app-settings/configure-function-app-appservice-editor.png)
470470
471471
We recommend that you consider developing your functions on your local computer. When you develop locally and publish to Azure, your project files are read-only in the portal. For more information, see [Code and test Azure Functions locally](functions-develop-local.md).
472472
473473
### <a name="console"></a>Console
474474
475-
![Screenshot that shows the function app console.](./media/functions-how-to-use-azure-function-app-settings/configure-function-console.png)
476-
477475
The in-portal console is an ideal developer tool when you prefer to interact with your function app from the command line. Common commands include directory and file creation and navigation, as well as executing batch files and scripts.
478476
477+
![Screenshot that shows the function app console.](./media/functions-how-to-use-azure-function-app-settings/configure-function-console.png)
478+
479479
When developing locally, we recommend using the [Azure Functions Core Tools](functions-run-local.md) and the [Azure CLI].
480480
481481
### <a name="kudu"></a>Advanced tools (Kudu)

0 commit comments

Comments
 (0)