Skip to content
Start here

Webhooks

resource cloudflare_stream_webhook

required Expand Collapse
account_id: String

The account identifier tag.

optional Expand Collapse
notification_url?: String

The URL where webhooks will be sent.

computed Expand Collapse
modified: Time

The date and time the webhook was last modified.

secret: String

The secret used to verify webhook signatures.

cloudflare_stream_webhook

resource "cloudflare_stream_webhook" "example_stream_webhook" {
  account_id = "023e105f4ecef8ad9ca31a8372d0c353"
  notification_url = "https://example.com"
}

data cloudflare_stream_webhook

required Expand Collapse
account_id: String

The account identifier tag.

computed Expand Collapse
modified: Time

The date and time the webhook was last modified.

notification_url: String

The URL where webhooks will be sent.

secret: String

The secret used to verify webhook signatures.

cloudflare_stream_webhook

data "cloudflare_stream_webhook" "example_stream_webhook" {
  account_id = "023e105f4ecef8ad9ca31a8372d0c353"
}