Skip to content

Commit

Permalink
Fixed target scope (#887)
Browse files Browse the repository at this point in the history
  • Loading branch information
majastrz authored Nov 12, 2020
1 parent 120cf68 commit 981c03a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/spec/resource-scopes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
]
Expand Down

0 comments on commit 981c03a

Please sign in to comment.