Skip to content

Commit

Permalink
Merge pull request #266 from terraform-providers/changelog/applicatio…
Browse files Browse the repository at this point in the history
…n-oauth2_permissions-breaking-change

changelog: note breaking change for azuread_application.oauth2_permissions
  • Loading branch information
manicminer authored Jun 8, 2020
2 parents d758259 + 6e5d712 commit 8293e9d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
## 0.11.0 (Unreleased)
## 0.10.0 (June 05, 2020)

BREAKING CHANGES:

* `azuread_application` - the `oauth2_permissions` attribute has changed from a list to a set. If you are referencing this attribute with explicit list indexes, you will need to update your configuration to use a `for` expression. For example:

```hcl
id = azuread_application.example.oauth2_permissions[0].id
```
becomes
```hcl
id = [for permission in azuread_application.example.oauth2_permissions : permission.id][0]
```
FEATURES:
* **New Resource:** `azuread_application_certificate` ([#262](https://github.com/terraform-providers/terraform-provider-azuread/issues/262))
Expand Down

0 comments on commit 8293e9d

Please sign in to comment.