{"id":21455537,"url":"https://github.com/hookdeck/terraform-provider-hookdeck","last_synced_at":"2026-01-21T13:01:43.965Z","repository":{"id":195077353,"uuid":"681251488","full_name":"hookdeck/terraform-provider-hookdeck","owner":"hookdeck","description":"Terraform provider for Hookdeck","archived":false,"fork":false,"pushed_at":"2025-10-08T14:10:26.000Z","size":828,"stargazers_count":8,"open_issues_count":10,"forks_count":2,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-09T01:30:28.611Z","etag":null,"topics":["hookdeck","iac-terraform","infrastructure-as-code","terraform","terraform-provider","webhooks"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/providers/hookdeck/hookdeck/latest/docs","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hookdeck.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-08-21T15:47:19.000Z","updated_at":"2025-09-27T09:51:55.000Z","dependencies_parsed_at":"2023-09-16T12:27:37.139Z","dependency_job_id":"51ca72be-b2f4-4a87-ba44-ce91e22f060b","html_url":"https://github.com/hookdeck/terraform-provider-hookdeck","commit_stats":null,"previous_names":["hookdeck/terraform-provider-hookdeck"],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/hookdeck/terraform-provider-hookdeck","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hookdeck%2Fterraform-provider-hookdeck","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hookdeck%2Fterraform-provider-hookdeck/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hookdeck%2Fterraform-provider-hookdeck/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hookdeck%2Fterraform-provider-hookdeck/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hookdeck","download_url":"https://codeload.github.com/hookdeck/terraform-provider-hookdeck/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hookdeck%2Fterraform-provider-hookdeck/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28633747,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hookdeck","iac-terraform","infrastructure-as-code","terraform","terraform-provider","webhooks"],"created_at":"2024-11-23T05:12:33.967Z","updated_at":"2026-01-21T13:01:43.957Z","avatar_url":"https://github.com/hookdeck.png","language":"Go","readme":"# Hookdeck Terraform Provider\n\n_The [Hookdeck Event Gateway](https://hookdeck.com) enables engineering teams to build, deploy, observe, and scale event-driven applications. For more information, see the [Hookdeck documentation](https://hookdeck.com/docs)._\n\nThe Hookdeck Terraform provider enables you to manage your Hookdeck workspaces using IaC (Infrastructure-as-Code), including managing your sources, destinations, connections, transformations, and more. It also supports webhook registration workflow that allows you to configure webhooks as part of your CI/CD processes.\n\n## Installation\n\nTo install Hookdeck Terraform provider:\n\n1. Obtain your Hookdeck API key from [the dashboard](https://dashboard.hookdeck.com/workspace/secrets)\n2. Add the following to your Terraform configuration file:\n\n```hcl\nterraform {\n  required_providers {\n    hookdeck = {\n      source  = \"hookdeck/hookdeck\"\n    }\n  }\n}\n\nprovider \"hookdeck\" {\n  # set HOOKDECK_API_KEY env var or optionally specify the key in the provider configuration\n  api_key = var.hookdeck_api_key\n}\n```\n\n## Using the provider\n\nThis README gives a basic example; for more examples, see the [examples/](examples/) folder, the rendered documentation on the [Terraform Registry](https://registry.terraform.io/providers/hookdeck/hookdeck/latest/docs), or [docs folder](docs/) in this repository.\n\n```hcl\n# Configure a source\nresource \"hookdeck_source\" \"my_source\" {\n  name = \"my_source\"\n}\n\n# Configure a destination\nresource \"hookdeck_destination\" \"my_destination\" {\n  name = \"my_destination\"\n  type = \"HTTP\"\n  config = jsonencode({\n    url  = \"https://myapp.example.com/api\"\n  })\n}\n\n# Configure a connection\nresource \"hookdeck_connection\" \"my_connection\" {\n  source_id      = hookdeck_source.my_source.id\n  destination_id = hookdeck_destination.my_destination.id\n}\n```\n\nFor [Source `config`](https://hookdeck.com/docs/api#source-object) and [Destination `config`](https://hookdeck.com/docs/api#destination-object) you must provide a JSON object. This means you do not get validation on the `config` property within your IDE or when running `terraform plan`. However, when running `terraform apply` the Hookdeck API will provide error responses if invalid configuration is received.\n\n## Dependencies\n\nThis provider is built on top of the [Hookdeck API](https://hookdeck.com/docs/api).\n\n## Development\n\n### Running locally\n\nSee https://developer.hashicorp.com/terraform/tutorials/providers-plugin-framework/providers-plugin-framework-provider#prepare-terraform-for-local-provider-install\n\n### Brief details\n\nBuild and install:\n\n```\ngo build\ngo install\n```\n\nOverride the provider in a `~/.terraformrc`:\n\n```\nprovider_installation {\n\n  dev_overrides {\n      \"hookdeck/hookdeck\" = \"/Users/leggetter/go/bin\"\n  }\n\n  # For all other providers, install them directly from their origin provider\n  # registries as normal. If you omit this, Terraform will _only_ use\n  # the dev_overrides block, and so no other providers will be available.\n  direct {}\n}\n```\n\n\n### Release\n\nReleased are managed via [GitHub Releases](https://github.com/hookdeck/terraform-provider-hookdeck/releases).\n\nTo release, create a new release with a name representing the SemVer version. Also, create a tag with the same version. A GitHub action is triggered via the new Tag creation and uses [GoReleaser](https://goreleaser.com) to create a new set of release assets for the Hookdeck Terraform Provider.\n\n### Notes\n\nEnable pre-commit Git hooks to ensure any code changes are reflected in the documentation:\n\n```sh\nmake enable-git-hooks\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhookdeck%2Fterraform-provider-hookdeck","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhookdeck%2Fterraform-provider-hookdeck","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhookdeck%2Fterraform-provider-hookdeck/lists"}