Skip to content

Commit 620bf32

Browse files
authored
fix(autopilot): narrow version exclusion (#2112)
1 parent 700a01d commit 620bf32

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

autogen/main/versions.tf.tmpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ terraform {
4747
google = {
4848
source = "hashicorp/google"
4949
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
50-
version = ">= 5.40.0, != 5.44.0, < 6.2.0, < 7"
50+
version = ">= 5.40.0, != 5.44.0, != 6.2.0, != 6.3.0, < 7"
5151
}
5252
google-beta = {
5353
source = "hashicorp/google-beta"
5454
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
55-
version = ">= 5.40.0, != 5.44.0, < 6.2.0, < 7"
55+
version = ">= 5.40.0, != 5.44.0, != 6.2.0, != 6.3.0, < 7"
5656
}
5757
kubernetes = {
5858
source = "hashicorp/kubernetes"
@@ -71,7 +71,7 @@ terraform {
7171
google = {
7272
source = "hashicorp/google"
7373
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
74-
version = ">= 5.40.0, != 5.44.0, < 6.2.0, < 7"
74+
version = ">= 5.40.0, != 5.44.0, != 6.2.0, != 6.3.0, < 7"
7575
}
7676
kubernetes = {
7777
source = "hashicorp/kubernetes"

modules/beta-autopilot-private-cluster/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ terraform {
2222
google = {
2323
source = "hashicorp/google"
2424
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
25-
version = ">= 5.40.0, != 5.44.0, < 6.2.0, < 7"
25+
version = ">= 5.40.0, != 5.44.0, != 6.2.0, != 6.3.0, < 7"
2626
}
2727
google-beta = {
2828
source = "hashicorp/google-beta"
2929
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
30-
version = ">= 5.40.0, != 5.44.0, < 6.2.0, < 7"
30+
version = ">= 5.40.0, != 5.44.0, != 6.2.0, != 6.3.0, < 7"
3131
}
3232
kubernetes = {
3333
source = "hashicorp/kubernetes"

modules/beta-autopilot-public-cluster/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ terraform {
2222
google = {
2323
source = "hashicorp/google"
2424
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
25-
version = ">= 5.40.0, != 5.44.0, < 6.2.0, < 7"
25+
version = ">= 5.40.0, != 5.44.0, != 6.2.0, != 6.3.0, < 7"
2626
}
2727
google-beta = {
2828
source = "hashicorp/google-beta"
2929
# Workaround for https://github.com/hashicorp/terraform-provider-google/issues/19428
30-
version = ">= 5.40.0, != 5.44.0, < 6.2.0, < 7"
30+
version = ">= 5.40.0, != 5.44.0, != 6.2.0, != 6.3.0, < 7"
3131
}
3232
kubernetes = {
3333
source = "hashicorp/kubernetes"

0 commit comments

Comments
 (0)