From 6356e64a451b99707d18c7e2d7c5f8025e8c5e6c Mon Sep 17 00:00:00 2001 From: Shenglong Li Date: Wed, 16 Dec 2020 15:12:43 -0800 Subject: [PATCH] Remove the not yet implemented note for conditions --- docs/spec/resources.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/spec/resources.md b/docs/spec/resources.md index 88dce6b26d8..decee2de168 100644 --- a/docs/spec/resources.md +++ b/docs/spec/resources.md @@ -79,9 +79,6 @@ resource otherResource 'Microsoft.Example/examples@2020-06-01' = { ``` ## Conditions - -**Note:** Conditions are not yet implemented ([#186](https://github.com/Azure/bicep/issues/186)). - Resources may be deployed if and only if a specified condition evaluated to `true`. Otherwise, resource deployment will be skipped. This is accomplished by adding a `if` keyword and a boolean expression to the resource declaration. The template compiled from the below example will deploy the DNS zone if the `deployZone` parameter evaluates to `true`: ``` param deployZone bool