Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 901 Bytes

File metadata and controls

49 lines (36 loc) · 901 Bytes
page_title hookdeck Provider
description

hookdeck Provider

Example Usage

terraform {
  required_providers {
    hookdeck = {
      source = "hookdeck/hookdeck"
    }
  }
}

provider "hookdeck" {
  api_key = var.hookdeck_api_key
}

# Create a source
resource "hookdeck_source" "source" {
  # ...
}

# Create a destination
resource "hookdeck_destination" "destination" {
  # ...
}

# Create a connection
resource "hookdeck_connection" "connection" {
  # ...
}

Schema

Optional

  • api_base (String) Hookdeck API Base URL. Alternatively, can be configured using the HOOKDECK_API_BASE environment variable.
  • api_key (String, Sensitive) Hookdeck API Key. Alternatively, can be configured using the HOOKDECK_API_KEY environment variable.