From e8cb4895ba3040370034e1a871c7a0a5811d5846 Mon Sep 17 00:00:00 2001 From: Marcin Jastrzebski Date: Wed, 11 Nov 2020 18:59:10 -0800 Subject: [PATCH] Fixed target scope --- docs/spec/resource-scopes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/spec/resource-scopes.md b/docs/spec/resource-scopes.md index 0cbfac48603..f08d0804c40 100644 --- a/docs/spec/resource-scopes.md +++ b/docs/spec/resource-scopes.md @@ -11,13 +11,13 @@ Unless otherwise specified, Bicep will assume that a given `.bicep` file is to b ```bicep // this file can only be deployed at a subscription scope -target = 'subscription' +targetScope = 'subscription' ``` > **NOTE:** The below syntax to target multiple scopes below has not yet been implemented. ```bicep // this file can be deployed at either a tenant or managementGroup scope -target = [ +targetScope = [ 'tenant' 'managementGroup' ]