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
Passing in parameters to template spec is similar to passing parameters to a Bicep file. Add the parameter values either inline or in a parameter file.
271
+
Passing in parameters to template spec is similar to passing parameters to a Bicep file. Add the parameter values either inline or in a parameters file.
272
272
273
273
### Inline parameters
274
274
@@ -294,11 +294,11 @@ az deployment group create \
294
294
295
295
---
296
296
297
-
### Parameter files
297
+
### Parameters files
298
298
299
299
- Use Bicep parameters file
300
300
301
-
To create a Bicep parameter file, you must specify the `using` statement. Here's an example:
301
+
To create a Bicep parameters file, you must specify the `using` statement. Here's an example:
302
302
303
303
```bicep
304
304
using 'using 'ts:<subscription-id>/<resource-group-name>/<template-spec-name>:<tag>'
@@ -308,7 +308,7 @@ az deployment group create \
308
308
309
309
For more information, see [Bicep parameters file](./parameter-files.md).
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/bicep/visual-studio-code.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Create Bicep files by using Visual Studio Code
3
3
description: Learn how to use Visual Studio Code to create Bicep files.
4
4
ms.topic: how-to
5
5
ms.custom: devx-track-bicep
6
-
ms.date: 11/20/2024
6
+
ms.date: 12/06/2024
7
7
---
8
8
9
9
# Create Bicep files by using Visual Studio Code
@@ -78,7 +78,7 @@ You can deploy Bicep files directly from Visual Studio Code. Select **Deploy Bic
78
78
79
79
### Generate parameters file
80
80
81
-
This command creates a parameter file in the same folder as the Bicep file. You can choose to create a Bicep parameter file or a JSON parameter file. The new Bicep parameter file name is `<bicep-file-name>.bicepparam`, while the new JSON parameter file name is `<bicep-file-name>.parameters.json`.
81
+
This command creates a parameters file in the same folder as the Bicep file. You can choose to create a Bicep parameters file or a JSON parameters file. The new Bicep parameters file name is `<bicep-file-name>.bicepparam`, while the new JSON parameters file name is `<bicep-file-name>.parameters.json`.
0 commit comments