Skip to content

Commit

Permalink
fix: avoid TPG v6.2.0 with Autopilot (#2086)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody authored Sep 11, 2024
1 parent 23eab7c commit fdd1287
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions autogen/main/versions.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ terraform {
google = {
source = "hashicorp/google"
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
version = ">= 5.40.0, != 5.44.0, < 7"
version = ">= 5.40.0, != 5.44.0, != 6.2.0, < 7"
}
google-beta = {
source = "hashicorp/google-beta"
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
version = ">= 5.40.0, != 5.44.0, < 7"
version = ">= 5.40.0, != 5.44.0, != 6.2.0, < 7"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand All @@ -71,7 +71,7 @@ terraform {
google = {
source = "hashicorp/google"
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
version = ">= 5.40.0, != 5.44.0, < 7"
version = ">= 5.40.0, != 5.44.0, != 6.2.0, < 7"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-autopilot-private-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ terraform {
google = {
source = "hashicorp/google"
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
version = ">= 5.40.0, != 5.44.0, < 7"
version = ">= 5.40.0, != 5.44.0, != 6.2.0, < 7"
}
google-beta = {
source = "hashicorp/google-beta"
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
version = ">= 5.40.0, != 5.44.0, < 7"
version = ">= 5.40.0, != 5.44.0, != 6.2.0, < 7"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
4 changes: 2 additions & 2 deletions modules/beta-autopilot-public-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ terraform {
google = {
source = "hashicorp/google"
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
version = ">= 5.40.0, != 5.44.0, < 7"
version = ">= 5.40.0, != 5.44.0, != 6.2.0, < 7"
}
google-beta = {
source = "hashicorp/google-beta"
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
version = ">= 5.40.0, != 5.44.0, < 7"
version = ">= 5.40.0, != 5.44.0, != 6.2.0, < 7"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down

0 comments on commit fdd1287

Please sign in to comment.