Skip to content

Commit 26d7915

Browse files
committed
Add the Preview label
1 parent 263b520 commit 26d7915

File tree

1 file changed

+5
-2
lines changed
  • articles/azure-resource-manager/bicep

1 file changed

+5
-2
lines changed

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,12 @@ The allowed values are:
9797

9898
In a module, you can specify a scope that is different than the scope for the rest of the Bicep file. For more information, see [Configure module scope](modules.md#set-module-scope)
9999

100-
## Functions
100+
## Functions (Preview)
101101

102-
Within your Bicep file, you can create your own functions in addition to using the [standard Bicep functions](./bicep-functions.md) that are automatically available within your Bicep files. Create your own functions when you have complicated expressions that are used repeatedly in your Bicep files.
102+
> [!NOTE]
103+
> To enable the preview feature, see [Enable experimental features](./bicep-config.md#enable-experimental-features).
104+
105+
In your Bicep file, you can create your own functions in addition to using the [standard Bicep functions](./bicep-functions.md) that are automatically available within your Bicep files. Create your own functions when you have complicated expressions that are used repeatedly in your Bicep files.
103106

104107
```bicep
105108
func buildUrl(https bool, hostname string, path string) string => '${https ? 'https' : 'http'}://${hostname}${empty(path) ? '' : '/${path}'}'

0 commit comments

Comments
 (0)