Skip to content

Commit

Permalink
Fix PubSub-to-BigQuery push configuration example (#7410)
Browse files Browse the repository at this point in the history
  • Loading branch information
soar authored Mar 10, 2023
1 parent 7f3832d commit 47cae1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "google_pubsub_subscription" "<%= ctx[:primary_resource_id] %>" {
topic = google_pubsub_topic.<%= ctx[:primary_resource_id] %>.name

bigquery_config {
table = "${google_bigquery_table.test.project}:${google_bigquery_table.test.dataset_id}.${google_bigquery_table.test.table_id}"
table = "${google_bigquery_table.test.project}.${google_bigquery_table.test.dataset_id}.${google_bigquery_table.test.table_id}"
}

depends_on = [google_project_iam_member.viewer, google_project_iam_member.editor]
Expand Down

0 comments on commit 47cae1e

Please sign in to comment.