Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions modules/udf/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "bq_find_in_set" {
source = "terraform-google-modules/gcloud/google"
version = "~> 3.0"
version = "~> 4.0"
enabled = var.add_udfs

platform = "linux"
Expand Down Expand Up @@ -46,7 +46,7 @@ EOT

module "bq_check_protocol" {
source = "terraform-google-modules/gcloud/google"
version = "~> 3.0"
version = "~> 4.0"
enabled = var.add_udfs

platform = "linux"
Expand All @@ -70,7 +70,7 @@ EOT

module "bq_parse_url" {
source = "terraform-google-modules/gcloud/google"
version = "~> 3.0"
version = "~> 4.0"
enabled = module.bq_check_protocol.wait != "" && var.add_udfs

platform = "linux"
Expand Down Expand Up @@ -99,7 +99,7 @@ EOT

module "bq_csv_to_struct" {
source = "terraform-google-modules/gcloud/google"
version = "~> 3.0"
version = "~> 4.0"
enabled = var.add_udfs

platform = "linux"
Expand Down
Loading