Skip to content

Commit

Permalink
prow: Bump GCP provider for the build clusters
Browse files Browse the repository at this point in the history
Followup of: #3021

Upgrade Terraform provider for GCP to 4.16.

I did an upgrade to the 4.0.0 of the provider to ensure we are not
impacated.
Changelog of 4.0.O: https://github.com/hashicorp/terraform-provider-google/blob/main/CHANGELOG.md#400-november-02-2021

Signed-off-by: Arnaud Meukam <ameukam@gmail.com>
  • Loading branch information
ameukam committed May 18, 2022
1 parent b57cc1f commit c175be7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 3.90.1"
version = "~> 4.16.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 3.90.1"
version = "~> 4.16.0"
}
}
}
6 changes: 3 additions & 3 deletions infra/gcp/terraform/modules/gke-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
*/

terraform {
required_version = "~> 1.0.0"
required_version = "~> 1.1.0"
required_providers {
google = {
source = "hashicorp/google"
version = "~> 3.90.1"
version = "~> 4.16.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 3.90.1"
version = "~> 4.16.0"
}
}
}
6 changes: 3 additions & 3 deletions infra/gcp/terraform/modules/gke-nodepool/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
*/

terraform {
required_version = "~> 1.0.0"
required_version = "~> 1.1.0"
required_providers {
google = {
source = "hashicorp/google"
version = "~> 3.90.1"
version = "~> 4.16.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 3.90.1"
version = "~> 4.16.0"
}
}
}
6 changes: 3 additions & 3 deletions infra/gcp/terraform/modules/gke-project/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
*/

terraform {
required_version = "~> 1.0.0"
required_version = "~> 1.1.0"
required_providers {
google = {
source = "hashicorp/google"
version = "~> 3.90.1"
version = "~> 4.16.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 3.90.1"
version = "~> 4.16.0"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
terraform {
required_version = "~> 1.0.0"
required_version = "~> 1.1.0"
required_providers {
google = {
source = "hashicorp/google"
version = "~> 3.90.1"
version = "~> 4.16.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 3.90.1"
version = "~> 4.16.0"
}
}
}

0 comments on commit c175be7

Please sign in to comment.