Skip to content

Commit

Permalink
rename example subject (#6416)
Browse files Browse the repository at this point in the history
* rename example subject

* update table value

* keep orig name

Co-authored-by: Edward Sun <[email protected]>
  • Loading branch information
edwardmedia and Edward Sun authored Aug 17, 2022
1 parent 2594360 commit 0cd2190
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mmv1/products/pubsub/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ objects:
- !ruby/object:Api::Type::String
name: 'table'
description: |
The name of the table to which to write data, of the form {projectId}.{datasetId}.{tableId}
The name of the table to which to write data, of the form {projectId}:{datasetId}.{tableId}
required: true
- !ruby/object:Api::Type::Boolean
name: 'useTopicSchema'
Expand Down
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 0cd2190

Please sign in to comment.