Skip to content

Commit 7e6f364

Browse files
author
unknown
committed
Update file name
1 parent 2743f1f commit 7e6f364

9 files changed

+17
-16
lines changed

articles/azure-app-configuration/TOC.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@
113113
- name: Build, deploy, and CI/CD
114114
items:
115115
- name: Import using Azure Pipelines
116-
href: import-kv-devops-pipeline.md
116+
href: azure-pipeline-import-task.md
117117
- name: Export using Azure Pipelines
118-
href: export-key-value-devops-pipeline.md
118+
href: azure-pipeline-export-task.md
119119
- name: Create snapshots using Azure Pipelines
120-
href: create-snapshot-devops-pipeline.md
120+
href: azure-pipeline-snapshot-task.md
121121
- name: Push using GitHub Actions
122122
href: push-kv-github-action.md
123123
- name: Build project using exported configuration

articles/azure-app-configuration/azure-pipeline-export-task.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.author: malev
1111

1212
# Export settings from App Configuration with Azure Pipelines
1313

14-
The Azure App Configuration Export task exports key-values from your App Configuration store and sets them as Azure pipeline variables, which subsequent tasks can consume. This task complements the Azure App Configuration Import task that imports key-values from a configuration file into your App Configuration store. For more information, see [Import settings to App Configuration with Azure Pipelines](import-kv-devops-pipeline.md).
14+
The Azure App Configuration Export task exports key-values from your App Configuration store and sets them as Azure pipeline variables, which subsequent tasks can consume. This task complements the Azure App Configuration Import task that imports key-values from a configuration file into your App Configuration store. For more information, see [Import settings to App Configuration with Azure Pipelines](azure-pipeline-import-task.md).
1515

1616
## Prerequisites
1717

@@ -123,10 +123,10 @@ For a complete reference of the parameters or to use this pipeline task in YAML
123123
To learn how to import key-values from a configuration file into your App Configuration store, continue to the following document.
124124

125125
> [!div class="nextstepaction"]
126-
> [Import settings to App Configuration with Azure pipelines](./import-kv-devops-pipeline.md)
126+
> [Import settings to App Configuration with Azure pipelines](./azure-pipeline-import-task.md)
127127
128128
To learn how to create snapshot in an App Configuration store, continue to the following document.
129129

130130
> [!div class="nextstepaction"]
131-
> [Create snapshots in App Configuration with Azure Pipelines](./create-snapshot-devops-pipeline.md)
131+
> [Create snapshots in App Configuration with Azure Pipelines](./azure-pipeline-snapshot-task.md)
132132

articles/azure-app-configuration/azure-pipeline-import-task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ For a complete reference of the parameters or to use this pipeline task in YAML
133133
To learn how to export key-values from your App Configuration store and set them as Azure pipeline variables, continue to the following document.
134134

135135
> [!div class="nextstepaction"]
136-
> [Export settings from App Configuration with Azure pipelines](./export-key-value-devops-pipeline.md)
136+
> [Export settings from App Configuration with Azure pipelines](./azure-pipeline-export-task.md)
137137
138138
To learn how to create snapshot in an App Configuration store, continue to the following document.
139139

140140
> [!div class="nextstepaction"]
141-
> [Create snapshots in App Configuration with Azure Pipelines](./create-snapshot-devops-pipeline.md)
141+
> [Create snapshots in App Configuration with Azure Pipelines](./azure-pipeline-snapshot-task.md)

articles/azure-app-configuration/azure-pipeline-snapshot-task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ For a complete reference of the parameters or to use this pipeline task in YAML
110110
To learn how to export key-values from your App Configuration store and set them as Azure pipeline variables, continue to the following document.
111111

112112
> [!div class="nextstepaction"]
113-
> [Export settings from App Configuration with Azure pipelines](./export-key-value-devops-pipeline.md)
113+
> [Export settings from App Configuration with Azure pipelines](./azure-pipeline-export-task.md)
114114
115115
To learn how to import key-values from a configuration file into your App Configuration store, continue to the following document.
116116

117117
> [!div class="nextstepaction"]
118-
> [Import settings to App Configuration with Azure pipelines](./import-kv-devops-pipeline.md)
118+
> [Import settings to App Configuration with Azure pipelines](./azure-pipeline-import-task.md)

articles/azure-app-configuration/concept-config-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ az appconfig kv import --profile appconfig/kvset --name <your store name> --sour
118118
> [!NOTE]
119119
> The KVSet file content profile is currently supported in
120120
> - Azure CLI version 2.30.0 or later
121-
> - [Azure App Configuration Import Task](./import-kv-devops-pipeline.md) version 10.0.0 or later
121+
> - [Azure App Configuration Import Task](./azure-pipeline-import-task.md) version 10.0.0 or later
122122
123123
The following table shows all the imported data in your App Configuration store.
124124

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ A multitenant application is built on an architecture where a shared instance of
130130
Configuration as code is a practice of managing configuration files under your source control system, for example, a git repository. It gives you benefits like traceability and approval process for any configuration changes. If you adopt configuration as code, App Configuration has tools to assist you in [managing your configuration data in files](./concept-config-file.md) and deploying them as part of your build, release, or CI/CD process. This way, your applications can access the latest data from your App Configuration store(s).
131131

132132
- For GitHub, you can import configuration files from your GitHub repository into your App Configuration store using [GitHub Actions](./push-kv-github-action.md)
133-
- For Azure DevOps, you can include the [Azure App Configuration Import](import-kv-devops-pipeline.md), an Azure pipeline task, in your build or release pipelines for data synchronization.
133+
- For Azure DevOps, you can include the [Azure App Configuration Import](azure-pipeline-import-task.md
134+
), an Azure pipeline task, in your build or release pipelines for data synchronization.
134135
- You can also import configuration files to App Configuration using Azure CLI as part of your CI/CD system. For more information, see [az appconfig kv import](scripts/cli-import.md).
135136

136137
This model allows you to include validation and testing steps before committing data to App Configuration. If you use multiple App Configuration stores, you can also push the configuration data to them incrementally or all at once.

articles/azure-app-configuration/howto-import-export-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.author: malev
1414

1515
Azure App Configuration supports data import and export operations. Use these operations to work with configuration data in bulk and exchange data between your App Configuration store and code project. For example, you can set up one App Configuration store for testing and another one for production. You can copy application settings between them so that you don't have to enter data twice.
1616

17-
This article provides a guide for importing and exporting data using either the [Azure portal](https://portal.azure.com) or the [Azure CLI](./scripts/cli-import.md). If you have adopted [Configuration as Code](./howto-best-practices.md#configuration-as-code) and manage your configurations in GitHub or Azure DevOps, you can set up ongoing configuration file import using [GitHub Actions](./push-kv-github-action.md) or use the [Azure Pipeline Import Task](./import-kv-devops-pipeline.md).
17+
This article provides a guide for importing and exporting data using either the [Azure portal](https://portal.azure.com) or the [Azure CLI](./scripts/cli-import.md). If you have adopted [Configuration as Code](./howto-best-practices.md#configuration-as-code) and manage your configurations in GitHub or Azure DevOps, you can set up ongoing configuration file import using [GitHub Actions](./push-kv-github-action.md) or use the [Azure Pipeline Import Task](./azure-pipeline-import-task.md).
1818

1919
## Import data
2020

articles/azure-app-configuration/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ landingContent:
109109
- linkListType: tutorial
110110
links:
111111
- text: Import data using Azure Pipelines
112-
url: import-kv-devops-pipeline.md
112+
url: azure-pipeline-import-task.md
113113
- text: Export data using Azure Pipelines
114-
url: export-key-value-devops-pipeline.md
114+
url: azure-pipeline-export-task.md
115115
- text: Push data using GitHub Actions
116116
url: push-kv-github-action.md
117117
- text: Export to project configuration file

articles/azure-app-configuration/integrate-ci-cd-pipeline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This article explains how to use data from Azure App Configuration in a continuo
1818

1919
## Use App Configuration in your Azure DevOps Pipeline
2020

21-
If you have an Azure DevOps Pipeline, you can fetch key-values from App Configuration and set them as task variables. The Azure App Configuration DevOps extension is an add-on module that provides this functionality. [Get this module](https://go.microsoft.com/fwlink/?linkid=2091063) and refer to [Export settings from App Configuration with Azure Pipelines](./export-key-value-devops-pipeline.md) for instructions to use it in your Azure Pipelines.
21+
If you have an Azure DevOps Pipeline, you can fetch key-values from App Configuration and set them as task variables. The Azure App Configuration DevOps extension is an add-on module that provides this functionality. [Get this module](https://go.microsoft.com/fwlink/?linkid=2091063) and refer to [Export settings from App Configuration with Azure Pipelines](./azure-pipeline-export-task.md) for instructions to use it in your Azure Pipelines.
2222

2323
## Deploy App Configuration data with your application
2424

0 commit comments

Comments
 (0)