Skip to content

Commit

Permalink
Update changelog for v0.8.3 (#596)
Browse files Browse the repository at this point in the history
* Update changelog for v0.8.3

* Update CHANGELOG.md

Co-authored-by: Marta Paes <[email protected]>

* Update CHANGELOG.md

Co-authored-by: Marta Paes <[email protected]>

* Update changelog for v0.8.3

---------

Co-authored-by: Marta Paes <[email protected]>
  • Loading branch information
bobbyiliev and morsapaes authored Jul 8, 2024
1 parent b8b9ccf commit 42cf5cb
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Changelog

## 0.8.3 - 2024-07-08

### Features

* New data source: `materialize_user` [#592](https://github.com/MaterializeInc/terraform-provider-materialize/pull/592).
This data source allows retrieving information about existing users in an organization by email.
It can be used together with the `materialize_user` resource for importing existing users:

```hcl
# Retrieve an existing user by email
data "materialize_user" "example" {
email = "[email protected]"
}
output "user_id" {
value = data.materialize_user.example.id
}
```

Define the `materialize_user` resource and import the existing user:
```hcl
resource "materialize_user" "example" {
email = "[email protected]"
}
```

Import command:
```sh
# terraform import materialize_user.example ${data.materialize_user.example.id}
```

### Misc

* Refactor to only fetch the list of Frontegg roles once per Terraform provider invocation [#595](https://github.com/MaterializeInc/terraform-provider-materialize/pull/595).
* Improve Frontegg HTTP mock server to improve maintainability [#593](https://github.com/MaterializeInc/terraform-provider-materialize/pull/593).

## 0.8.2 - 2024-07-01

### Features
Expand Down

0 comments on commit 42cf5cb

Please sign in to comment.