mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-04 17:00:50 -05:00
1.2 KiB
1.2 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| github | GitHub: github_organization_webhook | docs-github-resource-organization-webhook | Creates and manages webhooks for Github organizations |
github_organization_webhook
This resource allows you to create and manage webhooks for Github organization.
Example Usage
resource "github_organization_webhook" "foo" {
name = "web"
configuration {
url = "https://google.de/"
content_type = "form"
insecure_ssl = false
}
active = false
events = ["issues"]
}
Argument Reference
The following arguments are supported:
-
name- (Required) The type of the webhook. See a list of available hooks. -
events- (Required) A list of events which should trigger the webhook. Defaults to["push"]. See a list of available events -
config- (Required) key/value pair of configuration for this webhook. Available keys areurl,content_type,secretandinsecure_ssl. -
active- (Optional) Indicate of the webhook should receive events. Defaults totrue.
Attributes Reference
The following additional attributes are exported:
url- URL of the webhook