Skip to content

Commit 81f86e3

Browse files
committed
Addressing review feedback plus some cross-linking
1 parent 1146892 commit 81f86e3

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

articles/azure-app-configuration/faq.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ There's a limit of 10 KB for a single key-value item.
5555

5656
You control who can access App Configuration at a per-store level. Use a separate store for each environment that requires different permissions. This approach provides the best security isolation.
5757

58+
If you do not need security isolation between environments, you can use labels to differentiate between configuration values. [Use labels to enable different configurations for different environments](./howto-labels-aspnet-core.md) provides a complete example.
59+
5860
## What are the recommended ways to use App Configuration?
5961

6062
See [best practices](./howto-best-practices.md).

articles/azure-app-configuration/howto-best-practices.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ configBuilder.AddAzureAppConfiguration(options => {
5252
});
5353
```
5454

55+
[Use labels to enable different configurations for different environments](./howto-labels-aspnet-core.md) provides a complete example.
56+
5557
## App Configuration bootstrap
5658

5759
To access an App Configuration store, you can use its connection string, which is available in the Azure portal. Because connection strings contain credential information, they're considered secrets. These secrets need to be stored in Azure Key Vault, and your code must authenticate to Key Vault to retrieve them.

articles/azure-app-configuration/howto-labels-aspnet-core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Load configuration values with the label corresponding to the current environmen
5858
> [!IMPORTANT]
5959
> The above code snippet loads the App Configuration connection string from an environment variable called `AppConfigConnectionString`. Be sure that this environment variable is set properly.
6060
61-
Note that the `Select` method is called twice. The first time, it loads configuration values with no label. Then, it loads configuration values with the label corresponding to the current environment. These environment-specific values override any corresponding values with no label. You do not need to define environment-specific values for every key. If a key does not have a value with a label corresponding to the current environment, then the value with no label is used.
61+
The `Select` method is called twice. The first time, it loads configuration values with no label. Then, it loads configuration values with the label corresponding to the current environment. These environment-specific values override any corresponding values with no label. You do not need to define environment-specific values for every key. If a key does not have a value with a label corresponding to the current environment, then the value with no label is used.
6262

6363
## Testing in different environments
6464

0 commit comments

Comments
 (0)