Releases: FusionAuth/terraform-provider-fusionauth
Releases · FusionAuth/terraform-provider-fusionauth
v0.1.91
update Fusionauth provider to support tenant rate limit configuration…
v0.1.90
feat: add Form Field datasource (#209) * add form field datasource * typo * Update docs/data-sources/form_field.md Co-authored-by: Mark Manes <[email protected]> --------- Co-authored-by: Mark Manes <[email protected]>
v0.1.89
feat: add Email Data Source (#207) Adds the Email Template Data Source from an Email Template's name. Exposes exactly the same attributes as the [Email Resource](https://registry.terraform.io/providers/gpsinsight/fusionauth/latest/docs/resources/email). Usage: ```hcl data "fusionauth_email" "default_setup_password" { name = "[FusionAuth Default] Setup Password" } resource "fusionauth_tenant" "example" { name = "example" email_configuration { set_password_email_template_id = data.fusionauth_email.default_setup_password.id ... ``` plan output: ``` # fusionauth_tenant.example will be updated in-place ~ resource "fusionauth_tenant" "example" { id = "6081a8b0-b240-4c6b-bf97-f3ca1b545265" name = "example" # (7 unchanged attributes hidden) ~ email_configuration { + set_password_email_template_id = "2c8d6265-24ca-4d47-a60c-d8bb7abc7578" ```
v0.1.88
fix: Tenant JWT Configurations (#204) Since FusionAuth 1.30.0 `access_token_key_id` & `id_token_key_id` are optional fields of `fusionauth_tenant.jwt_configuration[0]`. Fixes: [#203](https://github.com/gpsinsight/terraform-provider-fusionauth/issues/203)
v0.1.87
Fixes #200 - Add client_id to newOAuthConfiguration app schema (#201)
v0.1.86
feat: return client id from application (#196)
v0.1.85
Send `authorized_url_validation_policy` when creating application (#194)
v0.1.84
feat: Add `selfServiceUser` form type (#188)
v0.1.83
Allow specifying the ID in a lambda (#189)
v0.1.82
add a default value for login_policy (#186)