Skip to content

Commit b3e1059

Browse files
committed
pipeline parameter override
1 parent f50bba9 commit b3e1059

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-resource-manager/bicep/add-template-to-azure-pipelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: CI/CD with Azure Pipelines and Bicep files
33
description: In this quickstart, you learn how to configure continuous integration in Azure Pipelines by using Bicep files. It shows how to use an Azure CLI task to deploy a Bicep file.
44
ms.topic: quickstart
55
ms.custom: devx-track-bicep, devx-track-azurecli
6-
ms.date: 01/10/2023
6+
ms.date: 05/05/2023
77
---
88

99
# Quickstart: Integrate Bicep with Azure Pipelines
@@ -113,7 +113,7 @@ steps:
113113
inlineScript: |
114114
az --version
115115
az group create --name $(resourceGroupName) --location $(location)
116-
az deployment group create --resource-group $(resourceGroupName) --template-file $(templateFile)
116+
az deployment group create --resource-group $(resourceGroupName) --template-file $(templateFile) --parameters storageAccountType='Standard_GRS' location="eastus"
117117
```
118118
119119
For the descriptions of the task inputs, see [Azure CLI task](/azure/devops/pipelines/tasks/reference/azure-cli-v2). When using the task on air-gapped cloud, you must set the `useGlobalConfig` property of the task to `true`. The default value is `false`.

0 commit comments

Comments
 (0)