Skip to content

Commit 26e92cb

Browse files
committed
Update
1 parent 3b73574 commit 26e92cb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/azure-app-configuration/quickstart-aspnet-core-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ Connect to your App Configuration store using Microsoft Entra ID (recommended),
7777
7878
### [Connection string](#tab/connection-string)
7979
80-
The command uses [Secret Manager](/aspnet/core/security/app-secrets) to store a secret named `ConnectionStrings:AppConfig`, which stores the connection string for your App Configuration store. Replace the `<your_connection_string>` placeholder with your App Configuration store's connection string. You can find the connection string in your App Configuration store's **Access settings** in the Azure portal.
80+
The command uses [Secret Manager](/aspnet/core/security/app-secrets) to store a secret named `ConnectionStrings:AppConfiguration`, which stores the connection string for your App Configuration store. Replace the `<your-App-Configuration-connection-string>` placeholder with your App Configuration store's read-only connection string. You can find the connection string in your App Configuration store's **Access settings** in the Azure portal.
8181
8282
```dotnetcli
8383
dotnet user-secrets init
84-
dotnet user-secrets set ConnectionStrings:AppConfiguration "<your_connection_string>"
84+
dotnet user-secrets set ConnectionStrings:AppConfiguration "<your-App-Configuration-connection-string>"
8585
```
8686
8787
> [!TIP]

articles/azure-app-configuration/use-variant-feature-flags-aspnet-core.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ ms.author: rossgrambo
88
ms.service: azure-app-configuration
99
ms.devlang: csharp
1010
ms.topic: tutorial
11-
ms.date: 10/18/2024
11+
ms.date: 12/18/2024
1212
---
1313

14-
# Tutorial: Use variant feature flags from Azure App Configuration in an ASP.NET Core application
14+
# Tutorial: Use variant feature flags in an ASP.NET Core application
1515

1616
In this tutorial, you use a variant feature flag to manage experiences for different user segments in an example application, *Quote of the Day*. You utilize the variant feature flag created in [Use variant feature flags](./use-variant-feature-flags.md). Before proceeding, ensure you create the variant feature flag named *Greeting* in your App Configuration store.
1717

@@ -28,11 +28,11 @@ In this tutorial, you use a variant feature flag to manage experiences for diffe
2828
dotnet new razor --auth Individual -o QuoteOfTheDay
2929
```
3030
31-
1. Create a [user secret](/aspnet/core/security/app-secrets) for the application by navigating into the *QuoteOfTheDay* folder and run the following commands. Replace the `<Your App Configuration store endpoint>` placeholder with your App Configuration store's endpoint. You can find the endpoint in your App Configuration store's **Overview** blade in the Azure portal.
31+
1. Navigate to the *QuoteOfTheDay* directory and create a [user secret](/aspnet/core/security/app-secrets) for the application by running the following commands. Replace the `<your-App-Configuration-endpoint>` placeholder with your App Configuration store's endpoint. You can find the endpoint in your App Configuration store's **Overview** blade in the Azure portal.
3232
3333
```dotnetcli
3434
dotnet user-secrets init
35-
dotnet user-secrets set Endpoints:AppConfiguration "<Your App Configuration store endpoint>"
35+
dotnet user-secrets set Endpoints:AppConfiguration "<your-App-Configuration-endpoint>"
3636
```
3737
3838
1. Add the latest versions of the required packages.

0 commit comments

Comments
 (0)