Skip to content

Commit

Permalink
Drop support for TPG v5
Browse files Browse the repository at this point in the history
- TPG 5.x is no longer supported or maintained for anything except
  critical backports
- The filestore module will soon support only TPG 6.4 and above,
  effectively making most of our blueprints require TPG 6.4+
  • Loading branch information
tpdownes committed Nov 5, 2024
1 parent fd7047b commit 7ab31d1
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions pkg/config/expand.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,11 @@ func getDefaultGoogleProviders(bp Blueprint) map[string]TerraformProvider {
return map[string]TerraformProvider{
"google": {
Source: "hashicorp/google",
Version: ">= 5.44.2, < 6.10.0",
Version: "~> 6.10.0",
Configuration: gglConf},
"google-beta": {
Source: "hashicorp/google-beta",
Version: ">= 5.44.2, < 6.10.0",
Version: "~> 6.10.0",
Configuration: gglConf}}
}

Expand Down
4 changes: 2 additions & 2 deletions pkg/config/expand_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ func (s *zeroSuite) TestExpandProviders(c *C) {
c.Check(g.TerraformProviders, DeepEquals, map[string]PR{
"google": TerraformProvider{
Source: "hashicorp/google",
Version: ">= 5.44.2, < 6.10.0"},
Version: "~> 6.10.0"},
"google-beta": TerraformProvider{
Source: "hashicorp/google-beta",
Version: ">= 5.44.2, < 6.10.0"}})
Version: "~> 6.10.0"}})
}

{ // no def PR, group PR
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ deployment_groups:
terraform_providers:
google:
source: hashicorp/google
version: '>= 5.44.2, < 6.10.0'
version: ~> 6.10.0
configuration:
project: ((var.project_id))
region: ((var.region))
zone: ((var.zone))
google-beta:
source: hashicorp/google-beta
version: '>= 5.44.2, < 6.10.0'
version: ~> 6.10.0
configuration:
project: ((var.project_id))
region: ((var.region))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 5.44.2, < 6.10.0"
version = "~> 6.10.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 5.44.2, < 6.10.0"
version = "~> 6.10.0"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ deployment_groups:
terraform_providers:
google:
source: hashicorp/google
version: '>= 5.44.2, < 6.10.0'
version: ~> 6.10.0
configuration:
project: ((var.project_id))
region: ((var.region))
zone: ((var.zone))
google-beta:
source: hashicorp/google-beta
version: '>= 5.44.2, < 6.10.0'
version: ~> 6.10.0
configuration:
project: ((var.project_id))
region: ((var.region))
Expand Down Expand Up @@ -80,14 +80,14 @@ deployment_groups:
terraform_providers:
google:
source: hashicorp/google
version: '>= 5.44.2, < 6.10.0'
version: ~> 6.10.0
configuration:
project: ((var.project_id))
region: ((var.region))
zone: ((var.zone))
google-beta:
source: hashicorp/google-beta
version: '>= 5.44.2, < 6.10.0'
version: ~> 6.10.0
configuration:
project: ((var.project_id))
region: ((var.region))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 5.44.2, < 6.10.0"
version = "~> 6.10.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 5.44.2, < 6.10.0"
version = "~> 6.10.0"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 5.44.2, < 6.10.0"
version = "~> 6.10.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 5.44.2, < 6.10.0"
version = "~> 6.10.0"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ deployment_groups:
terraform_providers:
google:
source: hashicorp/google
version: '>= 5.44.2, < 6.10.0'
version: ~> 6.10.0
configuration:
project: ((var.project_id))
region: ((var.region))
zone: ((var.zone))
google-beta:
source: hashicorp/google-beta
version: '>= 5.44.2, < 6.10.0'
version: ~> 6.10.0
configuration:
project: ((var.project_id))
region: ((var.region))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 5.44.2, < 6.10.0"
version = "~> 6.10.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 5.44.2, < 6.10.0"
version = "~> 6.10.0"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ deployment_groups:
terraform_providers:
google:
source: hashicorp/google
version: '>= 5.44.2, < 6.10.0'
version: ~> 6.10.0
configuration:
project: ((var.project_id))
region: ((var.region))
zone: ((var.zone))
google-beta:
source: hashicorp/google-beta
version: '>= 5.44.2, < 6.10.0'
version: ~> 6.10.0
configuration:
project: ((var.project_id))
region: ((var.region))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 5.44.2, < 6.10.0"
version = "~> 6.10.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 5.44.2, < 6.10.0"
version = "~> 6.10.0"
}
}
}

0 comments on commit 7ab31d1

Please sign in to comment.