Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Support use_table_schema bigquery option #180

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ module "pubsub" {
name = "bigquery" // required
table = "project.dataset.table" // required
use_topic_schema = true // optional
use_table_schema = false // optional
write_metadata = false // optional
drop_unknown_fields = false // optional
}
Expand Down
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ resource "google_pubsub_subscription" "bigquery_subscriptions" {
bigquery_config {
table = each.value["table"]
use_topic_schema = lookup(each.value, "use_topic_schema", false)
use_table_schema = lookup(each.value, "use_table_schema", false)
write_metadata = lookup(each.value, "write_metadata", false)
drop_unknown_fields = lookup(each.value, "drop_unknown_fields", false)
}
Expand Down