Skip to content

v0.3.0

Compare
Choose a tag to compare
@leggetter leggetter released this 08 May 13:17
· 8 commits to main since this release
035d3dc

Updates

  • Update to use the Hookdeck Go SDK v0.2.0

Features

AWS Signature Destination support

CleanShot 2024-05-08 at 14 12 34

OAuth2 Authorization Code Destination support

CleanShot 2024-05-08 at 14 14 34

OAuth2 Client Credentials Destination support

CleanShot 2024-05-08 at 14 13 22

Add JSON Destination authentication support

Useful when we haven't yet added direct support for a destination to the Terraform Provider.

resource "hookdeck_destination" "destination_example" {
  name = "my-destination"
  auth_method = {
    json = jsonencode({
      type = "AWS_SIGNATURE"
      config = {
        access_key_id     = "my-id"
        secret_access_key = "my-secret"
      }
    })
  }
}