Skip to content

Commit

Permalink
feat: Support use_table_schema bigquery option (#180)
Browse files Browse the repository at this point in the history
Co-authored-by: Imran Nayer <[email protected]>
  • Loading branch information
tknodell-recurly and imrannayer authored May 9, 2024
1 parent 3d8ad5a commit 834f204
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
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

0 comments on commit 834f204

Please sign in to comment.