v0.3.0
Updates
- Update to use the Hookdeck Go SDK v0.2.0
Features
AWS Signature Destination support
OAuth2 Authorization Code Destination support
OAuth2 Client Credentials Destination support
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"
}
})
}
}