Skip to content

Commit

Permalink
chore(deps): Update Terraform terraform-google-modules/bigquery/googl…
Browse files Browse the repository at this point in the history
…e to v8 (#339)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 16, 2024
1 parent 64cb7ac commit 158068a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/basic_bq/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "bigquery" {
source = "terraform-google-modules/bigquery/google"
version = "~> 7.0"
version = "~> 8.0"

dataset_id = "foo"
dataset_name = "foo"
Expand Down
6 changes: 3 additions & 3 deletions examples/basic_view/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

module "bigquery_tables" {
source = "terraform-google-modules/bigquery/google"
version = "~> 7.0"
version = "~> 8.0"

dataset_id = "foo"
dataset_name = "foo"
Expand All @@ -36,7 +36,7 @@ module "bigquery_tables" {

module "bigquery_views_without_pii" {
source = "terraform-google-modules/bigquery/google"
version = "~> 7.0"
version = "~> 8.0"

dataset_id = "${module.bigquery_tables.bigquery_dataset.dataset_id}_view_without_pii" # this creates a dependency so that we have the tables first
dataset_name = "foo view"
Expand All @@ -60,7 +60,7 @@ module "bigquery_views_without_pii" {
# so we create the authorized views after creating tables and views.
module "authorization" {
source = "terraform-google-modules/bigquery/google//modules/authorization"
version = "~> 7.0"
version = "~> 8.0"

project_id = var.table_project_id
dataset_id = module.bigquery_tables.bigquery_dataset.dataset_id
Expand Down
2 changes: 1 addition & 1 deletion examples/data_warehouse/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "data_warehouse" {
source = "terraform-google-modules/bigquery/google//modules/data_warehouse"
version = "~> 7.0"
version = "~> 8.0"

project_id = var.project_id
region = "asia-southeast1"
Expand Down
8 changes: 4 additions & 4 deletions examples/multiple_tables/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "bigquery" {
source = "terraform-google-modules/bigquery/google"
version = "~> 7.0"
version = "~> 8.0"

dataset_id = "foo"
dataset_name = "foo"
Expand Down Expand Up @@ -153,15 +153,15 @@ module "bigquery" {

module "add_udfs" {
source = "terraform-google-modules/bigquery/google//modules/udf"
version = "~> 7.0"
version = "~> 8.0"

dataset_id = module.bigquery.bigquery_dataset.dataset_id
project_id = module.bigquery.bigquery_dataset.project
}

module "auth_dataset" {
source = "terraform-google-modules/bigquery/google"
version = "~> 7.0"
version = "~> 8.0"
dataset_id = "auth_dataset"
dataset_name = "auth_dataset"
description = "some description"
Expand Down Expand Up @@ -224,7 +224,7 @@ resource "google_bigquery_routine" "auth_ds_routine2" {

module "add_authorization" {
source = "terraform-google-modules/bigquery/google//modules/authorization"
version = "~> 7.0"
version = "~> 8.0"

dataset_id = module.bigquery.bigquery_dataset.dataset_id
project_id = module.bigquery.bigquery_dataset.project
Expand Down
4 changes: 2 additions & 2 deletions examples/scheduled_queries/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "dataset" {
source = "terraform-google-modules/bigquery/google"
version = "~> 7.0"
version = "~> 8.0"

dataset_id = "example_dataset"
dataset_name = "example_dataset"
Expand All @@ -27,7 +27,7 @@ module "dataset" {

module "scheduled_queries" {
source = "terraform-google-modules/bigquery/google//modules/scheduled_queries"
version = "~> 7.0"
version = "~> 8.0"

project_id = module.dataset.project

Expand Down

0 comments on commit 158068a

Please sign in to comment.