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 #245

Merged
merged 12 commits into from
Oct 20, 2023
37 changes: 0 additions & 37 deletions examples/cloudbuild_enabled/versions.tf

This file was deleted.

33 changes: 0 additions & 33 deletions examples/simple-folder/versions.tf

This file was deleted.

33 changes: 0 additions & 33 deletions examples/simple/versions.tf

This file was deleted.

4 changes: 2 additions & 2 deletions modules/cloudbuild/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ terraform {
google = {
source = "hashicorp/google"
# Exclude 4.31.0 for https://github.com/hashicorp/terraform-provider-google/issues/12226
version = ">= 3.50, < 5.0, != 4.31.0"
version = ">= 3.50, != 4.31.0, <6"
}
google-beta = {
source = "hashicorp/google-beta"
# Exclude 4.31.0 for https://github.com/hashicorp/terraform-provider-google/issues/12226
version = ">= 3.50, < 5.0, != 4.31.0"
version = ">= 3.50, != 4.31.0, <6"
}
random = {
source = "hashicorp/random"
Expand Down
4 changes: 2 additions & 2 deletions modules/tf_cloudbuild_builder/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ terraform {
google = {
source = "hashicorp/google"
# Exclude 4.31.0 for https://github.com/hashicorp/terraform-provider-google/issues/12226
version = ">= 3.50, < 5.0, != 4.31.0"
version = ">= 3.50, != 4.31.0, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
# Exclude 4.31.0 for https://github.com/hashicorp/terraform-provider-google/issues/12226
version = ">= 3.50, < 5.0, != 4.31.0"
version = ">= 3.50, != 4.31.0, < 6"
}
}

Expand Down
4 changes: 2 additions & 2 deletions modules/tf_cloudbuild_source/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ terraform {
google = {
source = "hashicorp/google"
# Exclude 4.31.0 for https://github.com/hashicorp/terraform-provider-google/issues/12226
version = ">= 3.50, < 5.0, != 4.31.0"
version = ">= 3.50, != 4.31.0, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
# Exclude 4.31.0 for https://github.com/hashicorp/terraform-provider-google/issues/12226
version = ">= 3.50, < 5.0, != 4.31.0"
version = ">= 3.50, != 4.31.0, < 6"
}
}

Expand Down
4 changes: 2 additions & 2 deletions modules/tf_cloudbuild_workspace/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ terraform {
google = {
source = "hashicorp/google"
# Exclude 4.31.0 for https://github.com/hashicorp/terraform-provider-google/issues/12226
version = ">= 4.17, < 5.0, != 4.31.0"
version = ">= 4.17, != 4.31.0, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
# Exclude 4.31.0 for https://github.com/hashicorp/terraform-provider-google/issues/12226
version = ">= 4.17, < 5.0, != 4.31.0"
version = ">= 4.17, != 4.31.0, < 6"
}
}

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