-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
b8b9ccf
commit 42cf5cb
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|