Skip to content

Commit fb511f4

Browse files
committed
PR review feedback - Zhenlan
1 parent c6f3bb7 commit fb511f4

16 files changed

+77
-135
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-aspnet-netfx.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,15 @@ In this tutorial, you learn how to:
3131

3232
## Add key-values
3333

34-
1. Select **Operations** > **Configuration explorer** > **Create** > **Key-value** to add the following key-values:
35-
36-
| Key | Value | Label | Content Type |
37-
|------------------------------------|-------------------------------------|-------------|--------------|
38-
| *TestApp:Settings:BackgroundColor* | *White* | Leave empty | Leave empty |
39-
| *TestApp:Settings:FontColor* | *Black* | Leave empty | Leave empty |
40-
| *TestApp:Settings:FontSize* | *40* | Leave empty | Leave empty |
41-
| *TestApp:Settings:Message* | *Data from Azure App Configuration* | Leave empty | Leave empty |
42-
| *TestApp:Settings:Sentinel* | *v1* | Leave empty | *Leave empty |
43-
44-
1. Leave **Label** and **Content Type** with their default values, then select **Apply**. For more information about labels and content types, go to [Keys and values](concept-key-value.md).
34+
Add the following key-values to the App Configuration store and leave **Label** and **Content Type** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-a-key-valuee).
35+
36+
| Key | Value |
37+
|------------------------------------|-------------------------------------|
38+
| *TestApp:Settings:BackgroundColor* | *White* |
39+
| *TestApp:Settings:FontColor* | *Black* |
40+
| *TestApp:Settings:FontSize* | *40* |
41+
| *TestApp:Settings:Message* | *Data from Azure App Configuration* |
42+
| *TestApp:Settings:Sentinel* | *v1* |
4543

4644
## Create an ASP.NET Web Application
4745

articles/azure-app-configuration/enable-dynamic-configuration-dotnet.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,17 @@ In this tutorial, you learn how to:
2525
## Prerequisites
2626

2727
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
28-
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
28+
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-a-key-valuee).
2929
- [Visual Studio](https://visualstudio.microsoft.com/vs)
3030
- [.NET Framework 4.7.2 or later](https://dotnet.microsoft.com/download/dotnet-framework)
3131

3232
## Add a key-value
3333

34-
1. Select **Operations** > **Configuration explorer** > **Create** > **Key-value** to add the following key-value to your App Configuration store:
34+
Add the following key-value to the App Configuration store and leave **Label** and **Content Type** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
3535

36-
| Key | Value |
37-
|----------------------------|-------------------------------------|
38-
| *TestApp:Settings:Message* | *Data from Azure App Configuration* |
39-
40-
1. Leave **Label** and **Content Type** with their default values, then select **Apply**. For more information about labels and content types, go to [Keys and values](concept-key-value.md).
36+
| Key | Value |
37+
|----------------------------|-------------------------------------|
38+
| *TestApp:Settings:Message* | *Data from Azure App Configuration* |
4139

4240
## Create a .NET Framework console app
4341

articles/azure-app-configuration/howto-leverage-json-content-type.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid:
88
ms.service: azure-app-configuration
99
ms.devlang: azurecli
1010
ms.topic: how-to
11-
ms.date: 08/24/2022
11+
ms.date: 03/27/2023
1212
ms.custom: devdivchpfy22
1313
ms.author: avgupta
1414

@@ -74,17 +74,17 @@ JSON key-values can be created using Azure portal, Azure CLI, or by importing fr
7474

7575
### Create JSON key-values using Azure portal
7676

77-
1. Browse to your App Configuration store, and select **Operations** > **Configuration Explorer** > **Create** > **Key-value** to add the following key-values:
78-
79-
| Key | Value | Label | Content Type |
80-
|----------------------------|-----------------------------------------------------------|--------|------------------|
81-
| *Settings:BackgroundColor* | *"Green"* | Leave empty | *application/json* |
82-
| *Settings:FontSize* | *24* | Leave empty | *application/json* |
83-
| *Settings:UseDefaultRouting* | *false* | Leave empty | *application/json* |
84-
| *Settings:BlockedUsers* | *null* | Leave empty | *application/json* |
85-
| *Settings:ReleaseDate* | *"2020-08-04T12:34:56.789Z"* | Leave empty | *application/json* |
86-
| *Settings:RolloutPercentage* | *[25,50,75,100]* | Leave empty | *application/json* |
87-
| *Settings:Logging* | *{"Test":{"Level":"Debug"},"Prod":{"Level":"Warning"}}* | Leave empty | *application/json* |
77+
Add the following key-values to the App Configuration store. Leave **Label** with its default value. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-a-key-value).
78+
79+
| Key | Value | Content Type |
80+
| ---------------------------- | ------------------------------------------------------- | ------------------ |
81+
| *Settings:BackgroundColor* | *"Green"* | *application/json* |
82+
| *Settings:FontSize* | *24* | *application/json* |
83+
| *Settings:UseDefaultRouting* | *false* | *application/json* |
84+
| *Settings:BlockedUsers* | *null* | *application/json* |
85+
| *Settings:ReleaseDate* | *"2020-08-04T12:34:56.789Z"* | *application/json* |
86+
| *Settings:RolloutPercentage* | *[25,50,75,100]* | *application/json* |
87+
| *Settings:Logging* | *{"Test":{"Level":"Debug"},"Prod":{"Level":"Warning"}}* | *application/json* |
8888

8989
1. Select **Apply**.
9090

articles/azure-app-configuration/howto-move-resource-between-regions.md

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.service: azure-app-configuration
55
author: maud-lv
66
ms.author: malev
77
ms.topic: how-to
8-
ms.date: 02/14/2023
8+
ms.date: 03/27/2023
99

1010
#Customer intent: I want to move my App Configuration resource from one Azure region to another.
1111

@@ -26,39 +26,9 @@ Before you begin, keep in mind the following concepts:
2626

2727
## Create a target configuration store
2828

29-
### [Portal](#tab/portal)
30-
3129
1. Create a new App Configuration store by following the [App Configuration quickstart](../azure-app-configuration/quickstart-azure-app-configuration-create.md#create-an-app-configuration-store). For **Location** select the target region you want to move your configuration store to, and for **Pricing tier** select **Standard**.
3230
1. Once the resource has been deployed, recreate the access policies and network configuration settings of your source store. These will not be transferred with the configuration. This can include using managed identities, virtual networks, and public network access.
3331

34-
#### [Azure CLI](#tab/azcli)
35-
36-
To create a new App Configuration store in the CLI, follow these steps:
37-
38-
1. Log in to the Azure CLI with your credentials.
39-
40-
```azurecli
41-
az login
42-
```
43-
44-
1. Create a new configuration store with the `create` command,
45-
46-
```azurecli
47-
az appconfig create -g MyResourceGroup -n MyResourceName -l targetlocation --sku Standard
48-
```
49-
50-
and enter the following settings:
51-
52-
| Setting | Suggested value | Description |
53-
|---|---|---|
54-
| **Resource group** | Your resource group | Select the Azure resource group of your original store |
55-
| **Resource name** | Globally unique name | Enter a unique resource name to use for the target App Configuration store. This can not be the same name as the previous configuration store. |
56-
| **Location** | Your target Location | Select the target region you want to move your configuration store to. |
57-
| **Sku** | *Standard* | Select the desired pricing tier. For more information, see the [App Configuration pricing page](https://azure.microsoft.com/pricing/details/app-configuration). |
58-
59-
1. The deployment might take a few minutes. Once it is complete, recreate the access policies and network configuration settings of our source store. These will not be transferred with the configuration values. This can include using manage identities, virtual networks, and public network access. For more information, reference the [CLI documentation](./cli-samples.md).
60-
61-
---
6232

6333
## Transfer your configuration key-values
6434

@@ -73,8 +43,6 @@ Follow these steps to export your configuration to the target store using the Az
7343
1. Select **Apply** to verify your target configuration store.
7444
1. Leave the **From label**, **Time**, and **Label** fields with their default values and select **Apply**. For more information about labels, go to [Keys and values](concept-key-value.md).
7545
1. To verify that your configurations have been successfully transferred from your source to your target store, navigate to your target configuration store in the portal. Select **Configuration Explorer** under **Operations** and verify that this contains the same key-values as those in your original store.
76-
> [!NOTE]
77-
> This process only allows for configuration key-values to be exported by one label at a time. To export multiple, repeat steps 2-5 for each label.
7846

7947
### [Azure CLI](#tab/azcli)
8048

articles/azure-app-configuration/integrate-kubernetes-deployment-helm.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: maud-lv
66

77
ms.service: azure-app-configuration
88
ms.topic: tutorial
9-
ms.date: 03/14/2023
9+
ms.date: 03/27/2023
1010
ms.author: malev
1111

1212
#Customer intent: I want to use Azure App Configuration data in Kubernetes deployment with Helm.
@@ -38,14 +38,12 @@ This tutorial assumes basic understanding of managing Kubernetes with Helm. Lear
3838

3939
## Add key-values
4040

41-
1. Select **Operations** > **Configuration explorer** > **Create** > **Key-value** to add the following key-values to your App Configuration store:
41+
Add the following key-values to the App Configuration store and leave **Label** and **Content Type** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-a-key-value).
4242

43-
| Key | Value |
44-
|---|---|
45-
| settings.color | White |
46-
| settings.message | Data from Azure App Configuration |
47-
48-
1. Leave **Label** and **Content Type** with their default values, then select **Apply**. For more information about labels and content types, go to [Keys and values](concept-key-value.md).
43+
| Key | Value |
44+
|---|---|
45+
| *settings.color* | *White* |
46+
| *settings.message* | *Data from Azure App Configuration* |
4947

5048
## Add a Key Vault reference to App Configuration
5149

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

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: azure-app-configuration
77
ms.devlang: csharp
88
ms.custom: devx-track-csharp, contperf-fy21q1, mode-other, engagement-fy23
99
ms.topic: quickstart
10-
ms.date: 01/04/2023
10+
ms.date: 03/27/2023
1111
ms.author: zhenlwa
1212
#Customer intent: As an ASP.NET Core developer, I want to learn how to manage all my app settings in one place.
1313
---
@@ -26,16 +26,14 @@ In this quickstart, you'll use Azure App Configuration to externalize storage an
2626
2727
## Add key-values
2828

29-
1. Select **Operations** > **Configuration explorer** > **Create** > **Key-value** to add the following key-value to your App Configuration store:
29+
Add the following key-values to the App Configuration store and leave **Label** and **Content Type** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-a-key-value).
3030

31-
| Key | Value |
32-
|------------------------------------|-------------------------------------|
33-
| `TestApp:Settings:BackgroundColor` | *white* |
34-
| `TestApp:Settings:FontColor` | *black* |
35-
| `TestApp:Settings:FontSize` | *24* |
36-
| `TestApp:Settings:Message` | *Data from Azure App Configuration* |
37-
38-
1. Leave **Label** and **Content Type** with their default values, then select **Apply**. For more information about labels and content types, go to [Keys and values](concept-key-value.md).
31+
| Key | Value |
32+
|------------------------------------|-------------------------------------|
33+
| *TestApp:Settings:BackgroundColor* | *white* |
34+
| *TestApp:Settings:FontColor* | *black* |
35+
| *TestApp:Settings:FontSize* | *24* |
36+
| *TestApp:Settings:Message* | *Data from Azure App Configuration* |
3937

4038
## Create an ASP.NET Core web app
4139

articles/azure-app-configuration/quickstart-azure-app-configuration-create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ If you're following another tutorial to use the App Configuration store, you can
8282

8383
| Key | Value |
8484
|------------------------------------|-------------------------------------|
85-
| `TestApp:Settings:TextAlign` | *center* |
85+
|*TestApp:Settings:TextAlign* | *center* |
8686

8787
1. Leave **Label** and **Content Type** with their default values, then select **Apply**. For more information about labels and content types, go to [Keys and values](concept-key-value.md).
8888

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

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,11 @@ In this quickstart, you incorporate the Azure App Configuration service into an
2424

2525
## Add a key-value
2626

27-
1. Select **Operations** > **Configuration Explorer** > **Create** > **Key-value** to add the following key-value to your App Configuration store.
27+
Add the following key-value to the App Configuration store and leave **Label** and **Content Type** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-a-key-value).
2828

29-
| Key | Value |
30-
| ------------------------ | --------------------------------- |
31-
| TestApp:Settings:Message | Data from Azure App Configuration |
32-
33-
1. Leave **Label** and **Content Type** with their default values, then select **Apply**. For more information about labels and content types, go to [Keys and values](concept-key-value.md).
29+
| Key | Value |
30+
| -------------------------- | ----------------------------------- |
31+
| *TestApp:Settings:Message* | *Data from Azure App Configuration* |
3432

3533
## Create a Functions app
3634

articles/azure-app-configuration/quickstart-dotnet-app.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,11 @@ In this quickstart, a .NET Framework console app is used as an example, but the
2929

3030
## Add a key-value
3131

32-
1. Select **Operations** > **Configuration explorer** > **Create** > **Key-value** to add the following key-value to your App Configuration store:
32+
Add the following key-value to the App Configuration store and leave **Label** and **Content Type** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-a-key-value).
3333

34-
| Key | Value |
35-
|----------------------------|-------------------------------------|
36-
| *TestApp:Settings:Message* | *Data from Azure App Configuration* |
37-
38-
1. Leave **Label** and **Content Type** with their default values, then select **Apply**. For more information about labels and content types, go to [Keys and values](concept-key-value.md).
34+
| Key | Value |
35+
|----------------------------|-------------------------------------|
36+
| *TestApp:Settings:Message* | *Data from Azure App Configuration* |
3937

4038
## Create a .NET Framework console app
4139

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

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,11 @@ In this quickstart, you incorporate Azure App Configuration into a .NET Core con
2323

2424
## Add a key-value
2525

26-
1. Select **Operations** > **Configuration explorer** > **Create** > **Key-value** to add the following key-value to your App Configuration store:
26+
Add the following key-value to the App Configuration store and leave **Label** and **Content Type** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Add key-values](./quickstart-azure-app-configuration-create.md#create-a-key-value).
2727

28-
| Key | Value |
29-
|---|---|
30-
| TestApp:Settings:Message | Data from Azure App Configuration |
31-
32-
1. Leave **Label** and **Content Type** with their default values, then select **Apply**. For more information about labels and content types, go to [Keys and values](concept-key-value.md).
28+
| Key | Value |
29+
|----------------------------|-------------------------------------|
30+
| *TestApp:Settings:Message* | *Data from Azure App Configuration* |
3331

3432
## Create a .NET Core console app
3533

0 commit comments

Comments
 (0)