You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/deployment-tutorial-pipeline.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,7 @@
1
1
---
2
2
title: Continuous integration with Azure Pipelines
3
3
description: Learn how to continuously build, test, and deploy Azure Resource Manager templates.
4
-
author: mumian
5
-
ms.date: 10/29/2019
4
+
ms.date: 03/13/2020
6
5
ms.topic: tutorial
7
6
ms.author: jgao
8
7
---
@@ -87,9 +86,8 @@ Instead of creating the templates, you can download the templates and save them
87
86
88
87
* The main template: https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/get-started-deployment/linked-template/azuredeploy.json
89
88
* The linked template: https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/get-started-deployment/linked-template/linkedStorageAccount.json
90
-
* The parameter file: https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/get-started-deployment/linked-template/azuredeploy.parameters.json
91
89
92
-
Both the folder name and the file name are used as they are in the pipeline. If you change these names, you must update the names used in the pipeline.
90
+
Both the folder name and the file names are used as they are in the pipeline. If you change these names, you must update the names used in the pipeline.
93
91
94
92
### Push the template to the remote repository
95
93
@@ -110,7 +108,7 @@ The azuredeploy.json has been added to the local repository. Next, you upload th
110
108
1. Browse to your GitHub repository from a browser. The URL is **https://github.com/[YourAccountName]/[YourGitHubRepository]**. You shall see the **CreateWebApp** folder and the three files inside the folder.
111
109
1. Select **linkedStorageAccount.json** to open the template.
112
110
1. Select the **Raw** button. The URL is started with **raw.githubusercontent.com**.
113
-
1. Make a copy of the URL. You need to provide this value when you configure the pipeline later in the tutroial.
111
+
1. Make a copy of the URL. You need to provide this value when you configure the pipeline later in the tutorial.
114
112
115
113
So far, you have created a GitHub repository, and uploaded the templates to the repository.
116
114
@@ -179,7 +177,7 @@ To create a pipeline with a step to deploy a template:
179
177
* **Template location**: Select **Linked artifact**, which means the task looks for the template file directly from the connected repository.
180
178
* **Template**: Enter **CreateWebApp/azuredeploy.json**. If you changed the folder name and the file name, you need to change this value.
181
179
* **Template parameters**: Leave this field blank. You will specify the parameter values in the **Override template parameters.
182
-
* **overrideParameters**: Enter **-projectName [EnterAProjectName] -linkedTemplateUri [EnterTheLinkedTemplateURL]**. Replace the project name ans the linked template url. The linked template URL is what you wrote down at the end of [Create a Github repository](#create-a-github-repository).
180
+
* **overrideParameters**: Enter **-projectName [EnterAProjectName] -linkedTemplateUri [EnterTheLinkedTemplateURL]**. Replace the project name and the linked template url. The linked template URL is what you wrote down at the end of [Create a Github repository](#create-a-github-repository).
183
181
* **Deployment mode**: Select **Incremental**.
184
182
* **Deployment name**: Enter **DeployPipelineTemplate**. Select **Advanced** before you can see **Deployment name**.
185
183
@@ -242,7 +240,7 @@ You might also want to delete the GitHub repository and the Azure DevOps project
242
240
243
241
## Next steps
244
242
245
-
Congratulations, you've finished this Resource Manager template deployoment tutorial. Let us know if you have any comments and suggestions in the feedback section. Thanks!
243
+
Congratulations, you've finished this Resource Manager template deployment tutorial. Let us know if you have any comments and suggestions in the feedback section. Thanks!
246
244
You're ready to jump into more advanced concepts about templates. The next tutorial goes into more detail about using template reference documentation to help with defining resources to deploy.
0 commit comments