Skip to content

Commit 8568454

Browse files
authored
Merge pull request #277035 from mumian/0603-function-ga
user-defined-function ga
2 parents 43768c0 + b6b8aac commit 8568454

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep config file
33
description: Describes the configuration file for your Bicep deployments
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 02/02/2024
6+
ms.date: 06/03/2024
77
---
88

99
# Configure your Bicep environment
@@ -140,8 +140,8 @@ Here's an example of enabling features 'compileTimeImports' and 'userDefinedFunc
140140
```json
141141
{
142142
"experimentalFeaturesEnabled": {
143-
"compileTimeImports": true,
144-
"userDefinedFunctions": true
143+
"assertions": true,
144+
"testFramework": true
145145
}
146146
}
147147
```

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

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep file structure and syntax
33
description: Describes the structure and properties of a Bicep file using declarative syntax.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 11/03/2023
6+
ms.date: 06/03/2024
77
---
88

99
# Understand the structure and syntax of Bicep files
@@ -130,10 +130,7 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2022-09-01' = {
130130

131131
For more information, see [User-defined data types](./user-defined-data-types.md).
132132

133-
## Functions (Preview)
134-
135-
> [!NOTE]
136-
> To enable the preview feature, see [Enable experimental features](./bicep-config.md#enable-experimental-features).
133+
## Functions
137134

138135
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.
139136

0 commit comments

Comments
 (0)