Skip to content

Commit

Permalink
fix: avoid TGP v4.49.0 for asm (#1537)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andrew Peabody <andrewpeabody@google.com>
Co-authored-by: Bharath KKB <bharathkrishnakb@gmail.com>
  • Loading branch information
5 people committed Feb 1, 2023
1 parent 52e25ab commit 5d3d54e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/asm/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ terraform {
source = "hashicorp/kubernetes"
version = "~> 2.0"
}
google = {
source = "hashicorp/google"
# Avoid v4.49.0 for https://github.com/hashicorp/terraform-provider-google/issues/13507
version = ">= 4.47.0, != 4.49.0, != 4.50.0, < 5.0"
}
}

provider_meta "google" {
Expand Down
8 changes: 8 additions & 0 deletions modules/fleet-membership/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@
terraform {
required_version = ">= 0.13.0"

required_providers {
google = {
source = "hashicorp/google"
# Avoid v4.49.0 for https://github.com/hashicorp/terraform-provider-google/issues/13507
version = ">= 4.47.0, != 4.49.0, != 4.50.0, < 5.0"
}
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-kubernetes-engine:hub/v24.1.0"
}
Expand Down

0 comments on commit 5d3d54e

Please sign in to comment.