Skip to content

v0.2.40

Compare
Choose a tag to compare
@mariavlasov mariavlasov released this 24 Jan 08:45
· 56 commits to master since this release
159cc6b

BREAKING CHANGES:
Tenant ID is required on webhooks resource
Example:

resource "frontegg_webhook" "example" {
  enabled     = true
  name        = "Example webhook"
  description = "An example of a webhook"
  url         = "https://example.com/webhook"
  secret      = "example-sekret"
  events = [
    "frontegg.user.authenticated"
  ]
  tenant_id = "TenantId"
}

## What's Changed
* fixes the docs by @mariusgiger in https://github.com/frontegg/terraform-provider-frontegg/pull/70
* FR-10046 - Fix webhooks by @mariavlasov in https://github.com/frontegg/terraform-provider-frontegg/pull/71

## New Contributors
* @mariusgiger made their first contribution in https://github.com/frontegg/terraform-provider-frontegg/pull/70

**Full Changelog**: https://github.com/frontegg/terraform-provider-frontegg/compare/v0.2.39...v0.2.40