Skip to content

Commit

Permalink
fix(deps): Allow Terraform Google Provider to v5 (#74)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Peabody <andrewpeabody@google.com>
  • Loading branch information
renovate-bot and apeabody authored Apr 9, 2024
1 parent 69a64c0 commit 38e7ed2
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 158 deletions.
29 changes: 0 additions & 29 deletions examples/cloud_function2_gcs_source/versions.tf

This file was deleted.

29 changes: 0 additions & 29 deletions examples/cloud_function2_pubsub_trigger/versions.tf

This file was deleted.

29 changes: 0 additions & 29 deletions examples/secure_cloud_function_bigquery_trigger/versions.tf

This file was deleted.

29 changes: 0 additions & 29 deletions examples/secure_cloud_function_internal_server/versions.tf

This file was deleted.

29 changes: 0 additions & 29 deletions examples/secure_cloud_function_with_sql/versions.tf

This file was deleted.

4 changes: 2 additions & 2 deletions modules/secure-cloud-function-core/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.74, < 5.0"
version = ">= 4.74, < 6.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "< 5.0"
version = "< 6.0"
}
}
provider_meta "google" {
Expand Down
4 changes: 2 additions & 2 deletions modules/secure-cloud-function-security/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.74, < 5.0"
version = ">= 4.74, < 6.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "< 5.0"
version = "< 6.0"
}
}

Expand Down
4 changes: 2 additions & 2 deletions modules/secure-cloud-function/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.74, < 5.0"
version = ">= 4.74, < 6.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "< 5.0"
version = "< 6.0"
}
}

Expand Down
10 changes: 5 additions & 5 deletions modules/secure-web-proxy/versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright 2023 Google LLC
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -20,22 +20,22 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.74, < 5.0"
version = ">= 4.74, < 6.0"
}

google-beta = {
source = "hashicorp/google-beta"
version = "< 5.0"
version = "< 6.0"
}

null = {
source = "hashicorp/null"
version = "3.2.0"
version = ">= 3.2.0"
}

time = {
source = "hashicorp/time"
version = "0.9.1"
version = ">= 0.9.1"
}
}
}
4 changes: 2 additions & 2 deletions 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 = ">= 4.48, < 5.0"
version = ">= 4.48, < 5.24"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.48, < 5.0"
version = ">= 4.48, < 5.24"
}
}

Expand Down

0 comments on commit 38e7ed2

Please sign in to comment.