Skip to content

Commit

Permalink
fix: upgraded versions.tf to include minor bumps from tpg v5 (#118)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Peabody <andrewpeabody@google.com>
  • Loading branch information
g-awmalik and apeabody authored Jan 8, 2024
1 parent 2d57bef commit 14fcdf3
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 23 deletions.
5 changes: 2 additions & 3 deletions examples/instance_with_advanced_options/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 3.53, < 5.0"
source = "hashicorp/google"
}
template = {
source = "hashicorp/template"
version = "~> 2.1"
version = ">= 2.1"
}
}
required_version = ">= 0.13"
Expand Down
3 changes: 1 addition & 2 deletions examples/instance_with_attached_disk/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
5 changes: 2 additions & 3 deletions examples/instance_with_config_file/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
template = {
source = "hashicorp/template"
version = "~> 2.1"
version = ">= 2.1"
}
}
required_version = ">= 0.13"
Expand Down
6 changes: 2 additions & 4 deletions examples/managed_instance_group/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
}
required_version = ">= 0.13"
Expand Down
3 changes: 1 addition & 2 deletions examples/simple_instance/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
4 changes: 2 additions & 2 deletions modules/cos-coredns/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {

google = {
source = "hashicorp/google"
version = ">= 3.53, < 5.0"
version = ">= 3.53, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 3.53, < 5.0"
version = ">= 3.53, < 6"
}
template = {
source = "hashicorp/template"
Expand Down
4 changes: 2 additions & 2 deletions modules/cos-generic/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {

google = {
source = "hashicorp/google"
version = ">= 3.53, < 5.0"
version = ">= 3.53, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 3.53, < 5.0"
version = ">= 3.53, < 6"
}
template = {
source = "hashicorp/template"
Expand Down
4 changes: 2 additions & 2 deletions modules/cos-mysql/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {

google = {
source = "hashicorp/google"
version = ">= 3.53, < 5.0"
version = ">= 3.53, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 3.53, < 5.0"
version = ">= 3.53, < 6"
}
template = {
source = "hashicorp/template"
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.53, < 5.0"
version = ">= 3.53, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 3.53, < 5.0"
version = ">= 3.53, < 6"
}
}
}
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 {

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

Expand Down

0 comments on commit 14fcdf3

Please sign in to comment.