Skip to content

Commit f43cb69

Browse files
Merge pull request #291545 from LiSeda/LS-params1
LS_Bicep parameters_batch 1
2 parents 2e7a429 + e0f1d40 commit f43cb69

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

articles/azure-resource-manager/bicep/bicep-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep CLI commands and overview
33
description: Describes the commands that you can use in the Bicep CLI. These commands include building Azure Resource Manager templates from Bicep.
44
ms.topic: reference
55
ms.custom: devx-track-azurecli, devx-track-bicep, devx-track-arm-template
6-
ms.date: 10/30/2024
6+
ms.date: 12/06/2024
77
---
88

99
# Bicep CLI commands
@@ -116,13 +116,13 @@ The `generate-params` command builds a parameters file from the given Bicep file
116116
az bicep generate-params --file main.bicep --output-format bicepparam --include-params all
117117
```
118118

119-
The command creates a Bicep parameters file named _main.bicepparam_. The parameter file contains all parameters in the Bicep file, whether configured with default values or not.
119+
The command creates a Bicep parameters file named _main.bicepparam_. The parameters file contains all parameters in the Bicep file, whether configured with default values or not.
120120

121121
```azurecli
122122
az bicep generate-params --file main.bicep --outfile main.parameters.json
123123
```
124124

125-
The command creates a parameter file named _main.parameters.json_. The parameter file only contains the parameters without default values configured in the Bicep file.
125+
The command creates a parameters file named _main.parameters.json_. The parameters file only contains the parameters without default values configured in the Bicep file.
126126

127127
## install
128128

articles/azure-resource-manager/bicep/bicep-functions-parameters-file.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Bicep functions - parameters file
3-
description: This article describes the Bicep functions to be used in Bicep parameter files.
3+
description: This article describes the Bicep functions to be used in Bicep parameters files.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 08/09/2024
6+
ms.date: 12/06/2024
77
---
88

99
# Parameters file function for Bicep

articles/azure-resource-manager/bicep/bicep-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep functions
33
description: Describes the functions to use in a Bicep file to retrieve values, work with strings and numerics, and retrieve deployment information.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 05/21/2024
6+
ms.date: 12/06/2024
77
---
88

99
# Bicep functions
@@ -128,7 +128,7 @@ The following functions are available for working with objects. All of these fun
128128

129129
## Parameters file functions
130130

131-
The following functions are available to be used in Bicep parameter files. All of these functions are in the `sys` namespace.
131+
The following functions are available to be used in Bicep parameters files. All of these functions are in the `sys` namespace.
132132

133133
* [getSecret](./bicep-functions-parameters-file.md)
134134
* [readEnvironmentVariable](./bicep-functions-parameters-file.md)

articles/azure-resource-manager/bicep/bicep-using.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Using statement
33
description: Describes how to use the using statement in Bicep.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 06/28/2024
6+
ms.date: 12/06/2024
77
---
88

99
# Using statement
1010

11-
The `using` statement in [Bicep parameter files](./parameter-files.md) ties the [Bicep parameters file](./parameter-files.md) to a [Bicep file](./file.md), an [ARM JSON template](../templates/syntax.md), or a [Bicep module](./modules.md), or a [template spec](./template-specs.md). A `using` declaration must be present in any Bicep parameters file.
11+
The `using` statement in [Bicep parameters files](./parameter-files.md) ties the [Bicep parameters file](./parameter-files.md) to a [Bicep file](./file.md), an [ARM JSON template](../templates/syntax.md), or a [Bicep module](./modules.md), or a [template spec](./template-specs.md). A `using` declaration must be present in any Bicep parameters file.
1212

1313
> [!NOTE]
1414
> The Bicep parameters file is only supported in [Bicep CLI](./install.md) version 0.18.4 or newer, [Azure CLI](/cli/azure/install-azure-cli) version 2.47.0 or newer, and [Azure PowerShell](/powershell/azure/install-azure-powershell) version 9.7.1 or newer.

articles/azure-resource-manager/bicep/data-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Data types in Bicep
33
description: This article describes the data types that are available in Bicep.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 11/12/2024
6+
ms.date: 12/06/2024
77
---
88

99
# Data types in Bicep
@@ -111,7 +111,7 @@ When you specify integer values, don't use quotation marks.
111111
param exampleInt int = 1
112112
```
113113

114-
Bicep integers are 64-bit integers. When they're passed as inline parameters, the SDK or command-line tool you use for deployment can limit the range of values. For example, when you use PowerShell to deploy Bicep, integer types can range from -2147483648 to 2147483647. To avoid this limitation, specify large integer values in a [parameter file](parameter-files.md). Resource types apply their own limits for integer properties.
114+
Bicep integers are 64-bit integers. When they're passed as inline parameters, the SDK or command-line tool you use for deployment can limit the range of values. For example, when you use PowerShell to deploy Bicep, integer types can range from -2147483648 to 2147483647. To avoid this limitation, specify large integer values in a [parameters file](parameter-files.md). Resource types apply their own limits for integer properties.
115115

116116
Bicep supports an integer literal type that refers to a specific value that's an exact integer. In the following example, `1` is an integer literal type, and `foo` can only be assigned the value `1` and no other value.
117117

0 commit comments

Comments
 (0)