Skip to content

Commit a8e62bb

Browse files
committed
Acrolinx updates
1 parent ba7f86c commit a8e62bb

File tree

4 files changed

+21
-22
lines changed

4 files changed

+21
-22
lines changed

articles/azure-app-configuration/TOC.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@
4040
href: quickstart-feature-flag-dotnet-background-service.md
4141
- name: Java Spring
4242
href: quickstart-feature-flag-spring-boot.md
43-
- name: Azure Functions
44-
href: quickstart-feature-flag-azure-functions-csharp.md
4543
- name: Python
4644
href: quickstart-feature-flag-python.md
4745
- name: Node.js
4846
href: quickstart-feature-flag-javascript.md
47+
- name: Azure Functions
48+
href: quickstart-feature-flag-azure-functions-csharp.md
4949
- name: Azure Kubernetes Service
5050
href: quickstart-feature-flag-azure-kubernetes-service.md
5151
- name: Service integration
@@ -84,14 +84,14 @@
8484
href: enable-dynamic-configuration-dotnet.md
8585
- name: .NET Background Service
8686
href: enable-dynamic-configuration-dotnet-background-service.md
87-
- name: Azure Functions
88-
href: enable-dynamic-configuration-azure-functions-csharp.md
8987
- name: Spring Boot
9088
href: enable-dynamic-configuration-java-spring-app.md
9189
- name: Python
9290
href: enable-dynamic-configuration-python.md
9391
- name: Node.js
9492
href: enable-dynamic-configuration-javascript.md
93+
- name: Azure Functions
94+
href: enable-dynamic-configuration-azure-functions-csharp.md
9595
- name: Azure Kubernetes Service
9696
href: enable-dynamic-configuration-azure-kubernetes-service.md
9797
- name: Enable dynamic configuration using push model

articles/azure-app-configuration/enable-dynamic-configuration-azure-functions-csharp.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ title: Tutorial for using Azure App Configuration dynamic configuration in an Az
33
description: In this tutorial, you learn how to dynamically update the configuration data for Azure Functions apps
44
services: azure-app-configuration
55
author: zhenlan
6-
manager: qingye
76
ms.service: azure-app-configuration
87
ms.devlang: csharp
98
ms.topic: tutorial
10-
ms.date: 09/14/2022
9+
ms.date: 03/09/2025
1110
ms.author: zhenlwa
1211
ms.custom: "devx-track-csharp, azure-functions"
1312
ms.tgt_pltfrm: Azure Functions
@@ -16,7 +15,7 @@ ms.tgt_pltfrm: Azure Functions
1615
---
1716
# Tutorial: Use dynamic configuration in an Azure Functions app
1817

19-
This tutorial shows how you can enable dynamic configuration updates in your Azure Functions app. It builds upon the Azure Functions app introduced in the quickstarts. Before you continue, finish [Create an Azure functions app with Azure App Configuration](./quickstart-azure-functions-csharp.md) first.
18+
This tutorial shows how you can enable dynamic configuration updates in your Azure Functions app. It builds upon the Azure Functions app introduced in the quickstarts. Before you continue, finish [Create an Azure Functions app with Azure App Configuration](./quickstart-azure-functions-csharp.md) first.
2019

2120
In this tutorial, you learn how to:
2221

@@ -27,7 +26,7 @@ In this tutorial, you learn how to:
2726
2827
## Prerequisites
2928

30-
- Finish quickstart [Create an Azure functions app with Azure App Configuration](./quickstart-azure-functions-csharp.md)
29+
- Finish quickstart [Create an Azure Functions app with Azure App Configuration](./quickstart-azure-functions-csharp.md)
3130

3231
## Reload data from App Configuration
3332

@@ -129,7 +128,7 @@ The Azure App Configuration .NET provider supports caching and dynamic refresh o
129128
```
130129

131130
### [Connection string](#tab/connection-string)
132-
Set the environment variable named **AZURE_APPCONFIG_CONNECTION_STRING** to the read-only connection string of your App Configuration store found under *Access keys* of your store in the Azure portal.
131+
Set the environment variable named **AZURE_APPCONFIG_CONNECTION_STRING** to the read-only connection string of your App Configuration store found under *Access settings* of your store in the Azure portal.
133132

134133
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
135134

@@ -166,7 +165,7 @@ The Azure App Configuration .NET provider supports caching and dynamic refresh o
166165
|---|---|
167166
| *TestApp:Settings:Message* | *Data from Azure App Configuration - Updated* |
168167

169-
6. Refresh your browser a few times. After the default refresh interval of 30 seconds passes, the page displays the updated value retrieved from your Azure Functions app.
168+
6. Refresh your browser a few times. After the default refresh interval of 30-seconds passes, the page displays the updated value retrieved from your Azure Functions app.
170169

171170
![Quickstart Function refresh local](./media/quickstarts/dotnet-core-function-refresh-local.png)
172171

articles/azure-app-configuration/quickstart-azure-functions-csharp.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ services: azure-app-configuration
55
author: zhenlan
66
ms.service: azure-app-configuration
77
ms.devlang: csharp
8-
ms.custom: devx-track-csharp, mode-other
98
ms.topic: quickstart
109
ms.date: 03/09/2025
10+
ms.author: zhenlwa
11+
ms.custom: "devx-track-csharp, azure-functions"
12+
ms.tgt_pltfrm: Azure Functions
1113

1214
#Customer intent: As an Azure Functions developer, I want to manage all my app settings in one place using Azure App Configuration.
1315
---
@@ -20,7 +22,7 @@ This quickstart shows you how to manage your Azure Functions app settings outsid
2022
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
2123
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
2224
- [Visual Studio](https://visualstudio.microsoft.com/vs) with the **Azure development** workload.
23-
- [Azure Functions tools](../azure-functions/functions-develop-vs.md), if you don't have it installed with Visual Studio already.
25+
- [Azure Functions tools](../azure-functions/functions-develop-vs.md).
2426

2527
## Add a key-value
2628

@@ -42,11 +44,9 @@ Use the following table as a reference for key parameters when creating your Fun
4244
| Function | HTTP trigger |
4345
| Authorization level | Anonymous |
4446

45-
4647
> [!NOTE]
4748
> Azure App Configuration can be used with Azure Functions in either the [isolated worker model](../azure-functions/dotnet-isolated-process-guide.md) or the [in-process model](../azure-functions/functions-dotnet-class-library.md). This quickstart uses the isolated worker model as an example. You can find complete code examples for both models in the [Azure App Configuration GitHub repository](https://github.com/Azure/AppConfiguration/tree/main/examples/DotNetCore/AzureFunctions).
4849
49-
5050
## Connect to an App Configuration store
5151
You can connect to your App Configuration store using Microsoft Entra ID (recommended), or a connection string.
5252

@@ -63,7 +63,7 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
6363

6464
---
6565

66-
2. Open *Program.cs* and update the code as follows. You add Azure App Configuration as an additional configuration source by calling the `AddAzureAppConfiguration()` method.
66+
2. Open *Program.cs* and update the code as follows. You add Azure App Configuration as an additional configuration source by calling the `AddAzureAppConfiguration` method.
6767

6868
### [Microsoft Entra ID (recommended)](#tab/entra-id)
6969

@@ -171,7 +171,7 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
171171
```
172172

173173
### [Connection string](#tab/connection-string)
174-
Set the environment variable named **AZURE_APPCONFIG_CONNECTION_STRING** to the read-only connection string of your App Configuration store found under *Access keys* of your store in the Azure portal.
174+
Set the environment variable named **AZURE_APPCONFIG_CONNECTION_STRING** to the read-only connection string of your App Configuration store found under *Access settings* of your store in the Azure portal.
175175

176176
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
177177

@@ -204,26 +204,26 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
204204

205205
## Manage trigger parameters with App Configuration references
206206

207-
Azure Functions triggers define how a function is invoked. Trigger attributes, such as queue names or database names, are loaded at host startup time and cannot directly retrieve values from Azure App Configuration. To manage these parameters, you can use the App Configuration reference feature available for Azure Functions and App Service.
207+
Azure Functions triggers define how a function is invoked. Trigger attributes, such as queue names or database names, are loaded at host startup time and can't directly retrieve values from Azure App Configuration. To manage these parameters, you can use the App Configuration reference feature available for Azure Functions and App Service.
208208

209209
The App Configuration reference feature allows you to reference key-values stored in Azure App Configuration directly from your application settings. Azure Functions resolves these references at startup, enabling you to manage trigger parameters centrally and securely.
210210

211-
For example, consider a queue-triggered Azure Function. Instead of specifying the queue name directly in the trigger attribute, you can reference a key-value stored in Azure App Configuration.
211+
For example, consider a queue-triggered Function app. Instead of specifying the queue name directly in the trigger attribute, you can reference a key-value stored in Azure App Configuration.
212212

213213
1. In your Azure App Configuration store, add a key-value for your queue name:
214214

215215
| Key | Value |
216216
|------------------------------|----------------------------------------------|
217217
| *TestApp:Storage:QueueName* | *\<The queue name in your storage account>* |
218218

219-
1. In your Azure Functions, select **Settings** -> **Environment variables** -> **App settings** in the Azure portal, and create an application setting that references the App Configuration key:
219+
1. In your Function app, select **Settings** -> **Environment variables** -> **App settings** in the Azure portal, and create an application setting that references the App Configuration key:
220220

221221
| Name | Value |
222222
|----------------------|--------------------------------------------|
223-
| *MyQueueName* | `@Microsoft.AppConfiguration(Endpoint=https://<your-store-name>.azconfig.io; Key=TestApp:Storage:QueueName)` |
223+
| *MyQueueName* | `@Microsoft.AppConfiguration(Endpoint=https://<your-store-name>.azconfig.io; Key=TestApp:Storage:QueueName)` |
224224
225225
> [!TIP]
226-
> If you have multiple key-values in Azure App Configuration, you can [export them in batch as App Configuration references](./howto-import-export-data.md?#export-data-to-azure-app-service) to Azure Functions using the Azure Portal or CLI.
226+
> If you have multiple key-values in Azure App Configuration, you can [export them in batch as App Configuration references](./howto-import-export-data.md?#export-data-to-azure-app-service) to Azure Functions using the Azure portal or CLI.
227227

228228
1. Enable the managed identity for your Azure Functions app and assign it the **App Configuration Data Reader** role for your App Configuration store. For detailed instructions on setting up App Configuration references, see [Use App Configuration references in App Service and Azure Functions](../app-service/app-service-configuration-references.md).
229229

articles/azure-app-configuration/quickstart-javascript-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ run().catch(console.error);
329329
```
330330
331331
### [Connection string](#tab/connection-string)
332-
Set the environment variable named **AZURE_APPCONFIG_CONNECTION_STRING** to the read-only connection string of your App Configuration store found under *Access keys* of your store in the Azure portal.
332+
Set the environment variable named **AZURE_APPCONFIG_CONNECTION_STRING** to the read-only connection string of your App Configuration store found under *Access settings* of your store in the Azure portal.
333333
334334
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
335335

0 commit comments

Comments
 (0)