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/parameters.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Parameters in Bicep files
3
3
description: Describes how to define parameters in a Bicep file.
4
4
ms.topic: conceptual
5
5
ms.custom: devx-track-bicep
6
-
ms.date: 10/05/2023
6
+
ms.date: 10/12/2023
7
7
---
8
8
9
9
# Parameters in Bicep
@@ -42,6 +42,14 @@ param demoObject object
42
42
param demoArray array
43
43
```
44
44
45
+
The `param` keyword is also used in [.bicepparam files](./parameter-files.md). In .bicepparam files, you don't need to specify the data type as it is defined in Bicep files.
46
+
47
+
```bicep
48
+
param <parameter-name> = <value>
49
+
```
50
+
51
+
For more information, see [Parameters file](./parameter-files.md).
52
+
45
53
## Default value
46
54
47
55
You can specify a default value for a parameter. The default value is used when a value isn't provided during deployment.
0 commit comments