Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: upgraded versions.tf to include minor bumps from tpg v5 #261

Merged
merged 10 commits into from
Oct 9, 2023
3 changes: 1 addition & 2 deletions examples/basic_bq/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
}
required_version = ">= 0.13"
Expand Down
3 changes: 1 addition & 2 deletions examples/basic_view/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
}
required_version = ">= 0.13"
Expand Down
3 changes: 1 addition & 2 deletions examples/data_warehouse/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.52"
source = "hashicorp/google"
}
}
required_version = ">= 0.13"
Expand Down
3 changes: 1 addition & 2 deletions examples/multiple_tables/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
}
required_version = ">= 0.13"
Expand Down
3 changes: 1 addition & 2 deletions examples/scheduled_queries/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ terraform {
required_providers {

google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
}
}
2 changes: 1 addition & 1 deletion modules/authorization/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {

google = {
source = "hashicorp/google"
version = ">= 4.44, < 5.0"
version = ">= 4.44, < 6"
}
}

Expand Down
4 changes: 2 additions & 2 deletions modules/data_warehouse/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.52"
version = ">= 4.52, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.52"
version = ">= 4.52, < 6"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 1 addition & 1 deletion modules/udf/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {

google = {
source = "hashicorp/google"
version = ">= 3.53, < 5.0"
version = ">= 3.53, < 6"
}
}

Expand Down
6 changes: 2 additions & 4 deletions test/setup/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ terraform {
required_version = ">= 0.13"
required_providers {
google = {
source = "hashicorp/google"
version = ">= 3.53.0, < 6"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 3.53.0, < 6"
source = "hashicorp/google-beta"
}
}
}