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/bicep/add-template-to-azure-pipelines.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,9 +43,9 @@ You need a [Bicep file](./quickstart-create-bicep-use-visual-studio-code.md) tha
43
43
44
44
You can use Azure Resource Group Deployment task or Azure CLI task to deploy a Bicep file.
45
45
46
-
### Use Azure Resource Group Deployment task
46
+
### Use Azure Resource Manager Template Deployment task
47
47
48
-
Replace your starter pipeline with the following YAML. It creates a resource group and deploys a Bicep file by using an [Azure Resource Group Deployment task](/azure/devops/pipelines/tasks/deploy/azure-resource-group-deployment):
48
+
Replace your starter pipeline with the following YAML. It creates a resource group and deploys a Bicep file by using an [Azure Resource Manager Template Deployment task](/azure/devops/pipelines/tasks/reference/azure-resource-manager-template-deployment-v3).
49
49
50
50
```yml
51
51
trigger:
@@ -78,13 +78,13 @@ steps:
78
78
deploymentName: 'DeployPipelineTemplate'
79
79
```
80
80
81
-
For the descriptions of the task inputs, see [Azure Resource Group Deployment task](/azure/devops/pipelines/tasks/deploy/azure-resource-group-deployment).
81
+
For the descriptions of the task inputs, see [Azure Resource Manager Template Deployment task](/azure/devops/pipelines/tasks/reference/azure-resource-manager-template-deployment-v3).
82
82
83
83
Select **Save**. The build pipeline automatically runs. Go back to the summary for your build pipeline, and watch the status.
84
84
85
85
### Use Azure CLI task
86
86
87
-
Replace your starter pipeline with the following YAML. It creates a resource group and deploys a Bicep file by using an [Azure CLI task](/azure/devops/pipelines/tasks/deploy/azure-cli):
87
+
Replace your starter pipeline with the following YAML. It creates a resource group and deploys a Bicep file by using an [Azure CLI task](/azure/devops/pipelines/tasks/reference/azure-cli-v2):
0 commit comments