Skip to content

Commit b426734

Browse files
committed
incorporate feedback
1 parent 5a723a4 commit b426734

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Declare resources in Bicep
33
description: Describes how to declare resources to deploy in Bicep.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 10/23/2025
6+
ms.date: 10/24/2025
77
---
88

99
# Resource declaration in Bicep
@@ -104,7 +104,7 @@ Markdown-formatted text can be used for the description text.
104104

105105
By default, when a Bicep deployment runs, Azure Resource Manager (ARM) creates the resource if it doesn’t exist or updates it if it does. If an existing resource has properties that differ from your template, ARM might attempt to update it—or fail if updates aren’t permitted.
106106

107-
With Bicep version v0.38.3 or later, the `@onlyIfNotExists()` decorator instructs ARM to create the resource only if it doesn’t already exist. If the resource is found, ARM skips creation and leaves it unchanged.
107+
Starting with Bicep version v0.38.3, the `@onlyIfNotExists()` decorator instructs ARM to create the resource only if it does not already exist. If a resource with the resource ID is found, ARM skips creation and leaves the existing resource unchanged.
108108

109109
```bicep
110110
@onlyIfNotExists()

0 commit comments

Comments
 (0)