1
0
Fork 0
mirror of https://github.com/imjasonh/terraform-playground synced 2026-07-08 07:44:57 +00:00
terraform-playground/driftlessaf/trigger.tf
Jason Hall 627c94549d updates
Signed-off-by: Jason Hall <jason@chainguard.dev>
2026-02-03 12:55:24 -05:00

22 lines
623 B
HCL

module "pr-workqueue" {
source = "chainguard-dev/common/infra//modules/cloudevents-workqueue"
project_id = var.project_id
name = "pr-events"
regions = module.networking.regional-networks
broker = module.cloudevent-broker.broker
# Empty filter matches all events that have pullrequesturl extension
# This includes pull_request, issue_comment on PRs, pull_request_review, etc.
filters = [{}]
extension_key = "pullrequesturl"
workqueue = {
name = module.pr-reconciler.receiver.name
}
team = var.team
notification_channels = []
deletion_protection = false
}