Skip to content

Commit dedff0e

Browse files
committed
add the limit of the number of parameters
1 parent 42a785e commit dedff0e

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Describes how to define parameters in a Bicep file.
44
author: mumian
55
ms.author: jgao
66
ms.topic: conceptual
7-
ms.date: 04/20/2022
7+
ms.date: 09/06/2022
88
---
99

1010
# Parameters in Bicep
@@ -15,6 +15,10 @@ Resource Manager resolves parameter values before starting the deployment operat
1515

1616
Each parameter must be set to one of the [data types](data-types.md).
1717

18+
You are limited to 256 parameters. For more information, see [Template limits](../bicep/best-practices.md#template-limits).
19+
20+
For parameter best practices, see [Parameters](./best-practices.md#parameters).
21+
1822
### Training resources
1923

2024
If you would rather learn about parameters through step-by-step guidance, see [Build reusable Bicep templates by using parameters](/learn/modules/build-reusable-bicep-templates-parameters).
@@ -185,7 +189,7 @@ You might use this decorator to track information about the parameter that doesn
185189
source: 'database'
186190
contact: 'Web team'
187191
})
188-
param settings object
192+
param settings object
189193
```
190194

191195
## Use parameter

articles/azure-resource-manager/templates/parameters.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Parameters in templates
33
description: Describes how to define parameters in an Azure Resource Manager template (ARM template).
44
ms.topic: conceptual
5-
ms.date: 01/19/2022
5+
ms.date: 09/06/2022
66
---
77

88
# Parameters in ARM templates
@@ -16,6 +16,10 @@ Each parameter must be set to one of the [data types](data-types.md).
1616
> [!TIP]
1717
> We recommend [Bicep](../bicep/overview.md) because it offers the same capabilities as ARM templates and the syntax is easier to use. To learn more, see [parameters](../bicep/parameters.md).
1818
19+
You are limited to 256 parameters. For more information, see [Template limits](./best-practices.md#template-limits).
20+
21+
For parameter best practices, see [Parameters](./best-practices.md#parameters).
22+
1923
## Minimal declaration
2024

2125
At a minimum, every parameter needs a name and type.

0 commit comments

Comments
 (0)