Skip to content

v0.4.0

Compare
Choose a tag to compare
@leggetter leggetter released this 08 Aug 15:45
· 18 commits to main since this release
f2561a5

Features

  • Add data sources by @alexluong in #88

    Existing Hookdeck Source, Destination, and Connection resources can now be referenced using Terraform data sources.

    + data "hookdeck_source" "source" {
    +   id = "src_abcdef"
    + }
    
    resource "hookdeck_destination" "destination" {
      name = "destination"
    }
    
    resource "hookdeck_connection" "connection" {
      name           = "connection"
    + source_id      = data.hookdeck_source.source.id
      destination_id = hookdeck_destination.destination.id
    }
  • Adds new Source Verifications #83:

    • Discord
    • Vercel Log Drains
    • Vercel
    • Tebex
    • Slack
    • RazorPay

Updates

  • Update Hookdeck Go SDK to v0.4.1 by @alexluong in #83
  • Add user agent headers to improve telemetry of Terraform usage by @alexluong in #86

Full Changelog: v0.3.5...v0.4.0