Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: avoid TGP v4.49.0 for asm #1537

Merged
merged 13 commits into from
Feb 1, 2023
Merged
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