Skip to content

Releases: FusionAuth/terraform-provider-fusionauth

v0.1.91

29 Jun 15:29
342bfce
Compare
Choose a tag to compare
update Fusionauth provider to support tenant rate limit configuration…

v0.1.90

01 Jun 21:56
8eab8c7
Compare
Choose a tag to compare
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

25 May 05:23
84273bf
Compare
Choose a tag to compare
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

26 Apr 18:29
b36d0fc
Compare
Choose a tag to compare
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

17 Apr 17:27
2dbec27
Compare
Choose a tag to compare
Fixes #200 - Add client_id to newOAuthConfiguration app schema (#201)

v0.1.86

12 Apr 21:45
ff77c13
Compare
Choose a tag to compare
feat: return client id from application (#196)

v0.1.85

05 Apr 15:08
eb113aa
Compare
Choose a tag to compare
Send `authorized_url_validation_policy` when creating application (#194)

v0.1.84

04 Apr 22:26
283e7ef
Compare
Choose a tag to compare
feat: Add `selfServiceUser` form type (#188)

v0.1.83

27 Mar 05:02
1a1b162
Compare
Choose a tag to compare
Allow specifying the ID in a lambda (#189)

v0.1.82

15 Mar 20:05
6e2c249
Compare
Choose a tag to compare
add a default value for login_policy (#186)