1
0
Fork 0
mirror of https://github.com/imjasonh/rekor-bq synced 2026-07-07 00:12:20 +00:00
rekor-bq/variables.tf
Jason Hall 76f998604c
Add Terraform configuration for Rekor PubSub to BigQuery pipeline
- 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>
2025-07-30 19:31:28 -04:00

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"
}