1
0
Fork 0
mirror of https://github.com/imjasonh/terraform-playground synced 2026-07-12 09:28:30 +00:00
terraform-playground/driftlessaf/dashboard.tf
Jason Hall d7d9657e6a add dashboard
Signed-off-by: Jason Hall <jason@chainguard.dev>
2026-02-03 14:03:27 -05:00

35 lines
728 B
HCL

# Dashboards for the PR reconciler infrastructure
module "pr-reconciler-dashboard" {
source = "chainguard-dev/common/infra//modules/dashboard/reconciler"
project_id = var.project_id
name = "pr-logger"
# Workqueue configuration (should match reconciler module settings)
max_retry = 100
concurrent_work = 20
# Enable GitHub API metrics section since we call GitHub
sections = {
github = true
}
notification_channels = []
labels = {
team = var.team
}
}
module "pr-workqueue-dashboard" {
source = "chainguard-dev/common/infra//modules/dashboard/workqueue"
name = "pr-logger-wq"
concurrent_work = 20
max_retry = 100
labels = {
team = var.team
}
}