Skip to content

Commit

Permalink
fix: upgraded versions.tf to include minor bumps from tpg v5 (#245)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Peabody <[email protected]>
  • Loading branch information
g-awmalik and apeabody authored Oct 20, 2023
1 parent 3595827 commit 59c5e97
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 114 deletions.
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

0 comments on commit 59c5e97

Please sign in to comment.