mirror of
https://github.com/imjasonh/rekor-bq
synced 2026-07-07 00:12:20 +00:00
- BigQuery dataset and tables for storing Rekor entries
- PubSub subscription to Rekor's public topic (project-rekor/new-entry)
- Dead letter topic for failed messages
- IAM permissions for PubSub service account
- Monitoring alerts and dashboard
- SQL view for parsing CloudEvents attributes
- Auto-discovery of project number using data source
- Comprehensive README with setup instructions
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
No EOL
312 B
HCL
16 lines
No EOL
312 B
HCL
variable "project_id" {
|
|
description = "Your GCP project ID"
|
|
type = string
|
|
}
|
|
|
|
variable "region" {
|
|
description = "GCP region"
|
|
type = string
|
|
default = "us-central1"
|
|
}
|
|
|
|
variable "dataset_location" {
|
|
description = "BigQuery dataset location"
|
|
type = string
|
|
default = "US"
|
|
} |