Skip to content

Commit 56b07c3

Browse files
MaryanneNjeriMaryanne Njeri
andauthored
[App Configuration task] Update ReadMe file (#20519)
* Update Read me file for App configuration tasks * Update Read me file for App configuration tasks * Update Read me file for App configuration tasks * Update task version * Updated ReadMe --------- Co-authored-by: Maryanne Njeri <[email protected]>
1 parent ae0cbfd commit 56b07c3

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

Tasks/AzureAppConfigurationExportV10/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Azure AppConfiguration
1+
# Azure App Configuration Export
22

33
### Overview
44

5-
This task is used to pull key-values from your [App configuration store](https://learn.microsoft.com/azure/azure-app-configuration/quickstart-azure-app-configuration-create) and sets them as Azure pipeline variables, which can be consumed by subsequent tasks.
5+
This task is used to export key-values from your [App configuration store](https://learn.microsoft.com/azure/azure-app-configuration/quickstart-azure-app-configuration-create) and sets them as Azure pipeline variables, which can be consumed by subsequent tasks.
66

77
## Contact Information
88

@@ -23,7 +23,7 @@ The parameters of the task are described below. The parameters listed with a \*
2323

2424
* **Azure Subscription**\*: Select the AzureRM Subscription. If none exists, then click on the **Manage** link, to navigate to the Services tab in the Administrators panel. In the tab click on **New Service Connection** and select **Azure Resource Manager** from the dropdown.
2525

26-
* **App Configuration Endpoint**\*: Select the endpoint of the App Configuration store to which the key-values will be pulled from.
26+
* **App Configuration Endpoint**\*: Select the endpoint of the App Configuration store to which the key-values will be exported from.
2727

2828
* **Selection Mode**\*: Provide the selection mode. Selection mode allows you to specify how key-values are to be selected from the configuration store. The default value is **Default**
2929
- **Default**: Allows the use of key and label filter to specify key-values that will be selected from the store.

Tasks/AzureAppConfigurationExportV10/task.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"author": "Microsoft Corporation",
1010
"version": {
1111
"Major": 10,
12-
"Minor": 246,
13-
"Patch": 2
12+
"Minor": 247,
13+
"Patch": 0
1414
},
1515
"instanceNameFormat": "Azure App Configuration",
1616
"minimumAgentVersion": "2.144.0",

Tasks/AzureAppConfigurationExportV10/task.loc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"author": "Microsoft Corporation",
1010
"version": {
1111
"Major": 10,
12-
"Minor": 246,
13-
"Patch": 2
12+
"Minor": 247,
13+
"Patch": 0
1414
},
1515
"instanceNameFormat": "ms-resource:loc.instanceNameFormat",
1616
"minimumAgentVersion": "2.144.0",

Tasks/AzureAppConfigurationImportV10/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Azure AppConfiguration Push
1+
# Azure App Configuration Import
22

33
### Overview
44

5-
This task is used to push key-values from a configuration file to your [App Configuration store](https://learn.microsoft.com/azure/azure-app-configuration/quickstart-azure-app-configuration-create).
5+
This task is used to import key-values from a configuration file to your [App Configuration store](https://learn.microsoft.com/azure/azure-app-configuration/quickstart-azure-app-configuration-create).
66

77
## Contact Information
88

@@ -23,7 +23,7 @@ The parameters of the task are described below. The parameters listed with a \*
2323

2424
* **Azure Subscription**\*: Select the AzureRM Subscription. If none exists, then click on the **Manage** link, to navigate to the Services tab in the Administrators panel. In the tab click on **New Service Connection** and select **Azure Resource Manager** from the dropdown.
2525

26-
* **App Configuration Endpoint**\*: Select the endpoint of the App Configuration store to which the key-values will be pushed.
26+
* **App Configuration Endpoint**\*: Select the endpoint of the App Configuration store to which the key-values will be imported to.
2727

2828
* **Configuration File Path**\*: Provide the path to your configuration file.
2929

@@ -43,21 +43,21 @@ The parameters of the task are described below. The parameters listed with a \*
4343

4444
* **Depth**: Provide the depth that the .json and .yml files will be flattened to.
4545

46-
* **Prefix**: Provide a string that will be appended to the beginning of each key pushed to App Configuration Store.
46+
* **Prefix**: Provide a string that will be appended to the beginning of each key imported to App Configuration Store.
4747

4848
* **Label**: Provide a string that is added to each key-values as the label within the App Configuration Store.
4949

5050
* **Content Type**: Provide a string that is added to each key-value as the content type within the App Configuration store.
5151

52-
* **Exclude feature flags**: Specify whether or not any feature flags provided in the configuration file will be pushed to App Configuration.
52+
* **Exclude feature flags**: Specify whether or not any feature flags provided in the configuration file will be imported to App Configuration.
5353

5454
* **Use the file path extension to determine the file format**: Specify whether or not to use the file path extension to determine the file format.
5555

5656
* **Delete key-values that are not included in the configuration file**: The behavior of this option depends on the configuration file [content profile](https://learn.microsoft.com/azure/azure-app-configuration/concept-config-file). Default value is **Unchecked**.
57-
- **Unchecked**: Pushes all key-values from the configuration file into the App Configuration store and leaves everything else in the App Configuration store intact
57+
- **Unchecked**: Imports all key-values from the configuration file into the App Configuration store and leaves everything else in the App Configuration store intact
5858
- **Checked**:
59-
- **Default content profile**: Removes all key-values in the App Configuration store that match both the specified prefix and label before pushing new key-values from the configuration file
60-
- **Kvset content profile**: Removes all key-values in the App Configuration store that are not included in the configuration file before pushing new key-values from the configuration file.
59+
- **Default content profile**: Removes all key-values in the App Configuration store that match both the specified prefix and label before importing new key-values from the configuration file
60+
- **Kvset content profile**: Removes all key-values in the App Configuration store that are not included in the configuration file before importing new key-values from the configuration file.
6161

6262
* **Tags**: Specify one or more tags that should be added to a key-value. Tags should be of a valid JSON format.
6363

Tasks/AzureAppConfigurationImportV10/task.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"author": "Microsoft Corporation",
1010
"version": {
1111
"Major": 10,
12-
"Minor": 246,
13-
"Patch": 2
12+
"Minor": 247,
13+
"Patch": 0
1414
},
1515
"instanceNameFormat": "Azure App Configuration",
1616
"minimumAgentVersion": "2.144.0",

Tasks/AzureAppConfigurationImportV10/task.loc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"author": "Microsoft Corporation",
1010
"version": {
1111
"Major": 10,
12-
"Minor": 246,
13-
"Patch": 2
12+
"Minor": 247,
13+
"Patch": 0
1414
},
1515
"instanceNameFormat": "ms-resource:loc.instanceNameFormat",
1616
"minimumAgentVersion": "2.144.0",

0 commit comments

Comments
 (0)