Skip to content

v0.2.0

Compare
Choose a tag to compare
@leggetter leggetter released this 23 Apr 10:16
· 21 commits to main since this release
b4a3178

Updates

  • Update to Hookdeck Go SDK v0.0.37
  • rename "archived" to "disabled"
  • fix some small type changes from the SDK
  • remove default API base URL because the API without versioning doesn't work

Features

Add more source verification providers

  • Ebay
  • Enode
  • FrontApp
  • Linear
  • Orb
  • Pylon
  • Shopline
  • Telnyx
  • TokenIo

Add JSON source verification support

resource "hookdeck_source_verification" "verification_example" {
  source_id = hookdeck_source.example.id
  verification = {
    json = jsonencode({
      type = "stripe"
      configs = {
        webhook_secret_key = "secret"
      }
    })
  }
}