Skip to content

Commit

Permalink
Update bigquery_table import examples (#6524) (#12518)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Sep 9, 2022
1 parent cc1314c commit e8cf46d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/6524.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
6 changes: 4 additions & 2 deletions website/docs/r/bigquery_table.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,10 @@ exported:

## Import

BigQuery tables can be imported using the `project`, `dataset_id`, and `table_id`, e.g.
BigQuery tables imported using any of these accepted formats:

```
$ terraform import google_bigquery_table.default gcp-project/foo/bar
$ terraform import google_bigquery_table.default projects/{{project}}/datasets/{{dataset_id}}/tables/{{table_id}}
$ terraform import google_bigquery_table.default {{project}}/{{dataset_id}}/{{table_id}}
$ terraform import google_bigquery_table.default {{dataset_id}}/{{table_id}}
```

0 comments on commit e8cf46d

Please sign in to comment.