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
Metadata in Bicep is an untyped value that can be included in Bicep files. It allows you to provide supplementary information about your Bicep files, including details like its name, description, author, creation date, and more.
86
+
78
87
## Target scope
79
88
80
89
By default, the target scope is set to `resourceGroup`. If you're deploying at the resource group level, you don't need to set the target scope in your Bicep file.
@@ -110,7 +119,7 @@ For more information, see [Parameters in Bicep](./parameters.md).
110
119
111
120
## Parameter decorators
112
121
113
-
You can add one or more decorators for each parameter. These decorators describe the parameter and define constraints for the values that are passed in. The following example shows one decorator but many others are available.
122
+
You can add one or more decorators for each parameter. These decorators describe the parameter and define constraints for the values that are passed in. The following example shows one decorator but many others are available.
114
123
115
124
```bicep
116
125
@allowed([
@@ -143,7 +152,7 @@ For more information, see [Variables in Bicep](./variables.md).
143
152
144
153
## Resources
145
154
146
-
Use the `resource` keyword to define a resource to deploy. Your resource declaration includes a symbolic name for the resource. You'll use this symbolic name in other parts of the Bicep file to get a value from the resource.
155
+
Use the `resource` keyword to define a resource to deploy. Your resource declaration includes a symbolic name for the resource. You use this symbolic name in other parts of the Bicep file to get a value from the resource.
147
156
148
157
The resource declaration includes the resource type and API version. Within the body of the resource declaration, include properties that are specific to the resource type.
0 commit comments