Skip to content

Commit ed1ee0a

Browse files
author
unknown
committed
Address PR comments
1 parent 9c8a3ee commit ed1ee0a

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

articles/azure-app-configuration/create-snapshot-devops-pipeline.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ ms.date: 09/09/2024
99
ms.author: mgichohi
1010
---
1111

12-
# Create Snapshots in App Configuration with Azure Pipelines
12+
# Create snapshots in App Configuration with Azure Pipelines
1313

14-
The Azure App Configuration Snapshot task creates snapshot in an Azure App Configuration instance.
14+
The Azure App Configuration snapshot task is designed to create snapshots in Azure App Configuration.
1515

1616
## Prerequisites
1717

@@ -41,28 +41,28 @@ Assign the proper App Configuration role assignment to the credentials being use
4141

4242
## Use in builds
4343

44-
This section will cover how to use the Azure App Configuration Snapshot task in an Azure Devops build pipeline.
44+
In this section, learn how to use the Azure App Configuration snapshot task in an Azure DevOps build pipeline.
4545

46-
1. Navigate to the build pipeline page by clicking **Pipelines** > **Pipelines**. Documentation for build pipelines can be found [here](/azure/devops/pipelines/create-first-pipeline?tabs=tfs-2018-2).
46+
1. Navigate to the build pipeline page by clicking **Pipelines** > **Pipelines**. For more information about build pipelines got to [Create your first pipeline](/azure/devops/pipelines/create-first-pipeline?tabs=tfs-2018-2).
4747
- If you're creating a new build pipeline, on the last step of the process, on the **Review** tab, select **Show assistant** on the right side of the pipeline.
4848
> [!div class="mx-imgBorder"]
4949
> ![Screenshot shows the Show assistant button for a new pipeline.](./media/new-pipeline-show-assistant.png)
5050
- If you're using an existing build pipeline, click the **Edit** button at the top-right.
5151
> [!div class="mx-imgBorder"]
5252
> ![Screenshot shows the Edit button for an existing pipeline.](./media/existing-pipeline-show-assistant.png)
53-
1. Search for the **Azure App Configuration Snapshot** Task.
53+
1. Search for the **Azure App Configuration snapshot** Task.
5454
> [!div class="mx-imgBorder"]
55-
> ![Screenshot shows the to Add Task dialog with Azure App Configuration Snapshot in search box.](./media/add-azure-app-configuration-snapshot-task.png)
55+
> ![Screenshot shows the to Add Task dialog with Azure App Configuration snapshot in search box.](./media/add-azure-app-configuration-snapshot-task.png)
5656
1. Configure the necessary parameters for the task to create a snapshot in an App Configuration store. Explanation of the parameters are available in the **Parameters** section below and in tooltips next to each parameter.
5757
> [!div class="mx-imgBorder"]
5858
> ![Screenshot shows the app configuration snapshot task parameters](./media/azure-app-configuration-snapshot-parameters.png)
5959
1. Save and queue a build. The build log will display any failures that occured during the execution of the task.
6060

6161
## Use in releases
6262

63-
This section will cover how to use the Azure App Configuration Snapshot task in an Azure Devops release pipeline.
63+
In this section, learn how to use the Azure App Configuration snapshot task in an Azure DevOps release pipeline.
6464

65-
1. Navigate to release pipeline page by selecting, **Pipelines** > **Releases**. Documentation for release pipelines can be found [here](/azure/devops/pipelines/release).
65+
1. Navigate to the release pipeline page by selecting, **Pipelines** > **Releases**. For more information about release pipelines go to [Create your first pipeline](/azure/devops/pipelines/release).
6666
1. Choose an existing release pipeline. If you don’t have one, select **+ New** to create a new one.
6767
1. Select the **Edit** button in the top-right corner to edit the release pipeline.
6868
1. From the **Tasks** dropdown, choose the **Stage** to which you want to add the task. More information about stages can be found [here](/azure/devops/pipelines/release/environments).
@@ -71,28 +71,28 @@ This section will cover how to use the Azure App Configuration Snapshot task in
7171
1. Click **+** next to the Job to which you want to add a new task.
7272
> [!div class="mx-imgBorder"]
7373
> ![Screenshot shows the plus button next to the job.](./media/add-task-to-job.png)
74-
1. In the **Add tasks** dialog, type **Azure App Configuration Snapshot** into the search box and select it.
74+
1. In the **Add tasks** dialog, type **Azure App Configuration snapshot** into the search box and select it.
7575
1. Configure the necessary parameters within the task to create a snapshot within your App Configuration store. Explanations of the parameters are available in the **Parameters** section below, and in tooltips next to each parameter.
7676
1. Save and queue a release. The release log will display any failures encountered during the execution of the task.
7777

7878
## Parameters
7979

80-
The following parameters are used by the App Configuration Snapshot task:
80+
The following parameters are used by the App Configuration snapshot task:
8181

8282
- **Azure subscription**: A drop-down containing your available Azure service connections. To update and refresh your list of available Azure service connections, press the **Refresh Azure subscription** button to the right of the textbox.
8383

84-
- **App Configuration Endpoint**: A drop-down that loads your available configuration stores endpoint under the selected subscription. To update and refresh your list of available configuration stores endpoint, press the **Refresh App Configuration Endpoint** button to the right of the textbox.
84+
- **App Configuration Endpoint**: A drop-down that loads your available configuration store endpoints under the selected subscription. To update and refresh your list of available configuration store endpoints, press the **Refresh App Configuration Endpoint** button to the right of the textbox.
8585

8686
- **Snapshot Name**: Specify the name for the snapshot.
8787

8888
- **Composition Type**: The default value is **Key**.
89-
- **Key**: The filters are applied in order for this composition type. Each key value in the snapshot is uniquely identified by the key only. If there are multiple key values with the same key and multiple labels, only one key value will be retained based on the last applicable filter.
89+
- **Key**: The filters are applied in order for this composition type. Each key-value in the snapshot is uniquely identified by the key only. If there are multiple key-values with the same key and multiple labels, only one key-value will be retained based on the last applicable filter.
9090

91-
- **Key-Label**: Filters will be applied and every key value in the resulting snapshot will be uniquely identified by the key and label together.
91+
- **Key-Label**: Filters will be applied and every key-value in the resulting snapshot will be uniquely identified by the key and label together.
9292

9393
- **Filters**: Represents key and label filter used to build an App Configuration snapshot. Filters should be of a valid JSON format. Example `[{"key":"abc*", "label":"1.0.0"}]`. At least one filter should be specified and a max of three filters can be specified.
9494

95-
- **Retention period**: The default value is 30 days. Refers to the number of days the snapshot will be retained after its archived. Archived snapshots can be recovered during the retention period.
95+
- **Retention period**: The default value is 30 days. Refers to the number of days the snapshot will be retained after it's archived. Archived snapshots can be recovered during the retention period.
9696

9797
- **Tags**: A JSON object in the format of `{"tag1":"val1", "tag2":"val2"}`, which defines tags that are added to each snapshot created in your App Configuration store.
9898

0 commit comments

Comments
 (0)