Skip to content

Commit c734850

Browse files
Merge pull request #263443 from mumian/0117-bicepparam-override
Inline overrides for .bicepparam is supported
2 parents e074aee + f1d233b commit c734850

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

articles/azure-resource-manager/bicep/parameter-files.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create parameters files for Bicep deployment
33
description: Create parameters file for passing in values during deployment of a Bicep file
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 11/03/2023
6+
ms.date: 01/17/2024
77
---
88

99
# Create parameters files for Bicep deployment
@@ -338,7 +338,6 @@ From Azure CLI, you can pass a parameter file with your Bicep file deployment.
338338

339339
With Azure CLI version 2.53.0 or later, and [Bicep CLI version 0.22.X or higher](./install.md), you can deploy a Bicep file by utilizing a Bicep parameter file. With the `using` statement within the Bicep parameters file, there is no need to provide the `--template-file` switch when specifying a Bicep parameter file for the `--parameters` switch. Including the `--template-file` switch will result in an "Only a .bicep template is allowed with a .bicepparam file" error.
340340

341-
342341
```azurecli
343342
az deployment group create \
344343
--name ExampleDeployment \
@@ -389,7 +388,7 @@ For more information, see [Deploy resources with Bicep and Azure PowerShell](./d
389388

390389
## Parameter precedence
391390

392-
You can use inline parameters and a local parameters file in the same deployment operation. For example, you can specify some values in the local parameters file and add other values inline during deployment. If you provide values for a parameter in both the local parameters file and inline, the inline value takes precedence. This feature hasn't been implemented for Bicep parameters file.
391+
You can use inline parameters and a local parameters file in the same deployment operation. For example, you can specify some values in the local parameters file and add other values inline during deployment. If you provide values for a parameter in both the local parameters file and inline, the inline value takes precedence.
393392

394393
It's possible to use an external parameters file, by providing the URI to the file. When you use an external parameters file, you can't pass other values either inline or from a local file. All inline parameters are ignored. Provide all parameter values in the external file.
395394

0 commit comments

Comments
 (0)