Skip to content

Commit

Permalink
Merge pull request #76 from kevinsunny1996/build/create_bq_dataset
Browse files Browse the repository at this point in the history
Create Bigquery Dataset for RAWG API Data
  • Loading branch information
kevinsunny1996 authored Mar 15, 2024
2 parents 2951fd0 + 9a0a947 commit 50fea3d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions terraform/bigquery.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
resource "google_bigquery_dataset" "rawg_api_dataset" {
dataset_id = "rawg_api_elt_dataset"
project = local.id
location = local.region
delete_contents_on_destroy = true
}

0 comments on commit 50fea3d

Please sign in to comment.