Skip to content

Commit 36a8bd1

Browse files
excluding versions 6.26.0 and 6.27.0
1 parent 7b24b12 commit 36a8bd1

File tree

22 files changed

+82
-44
lines changed

22 files changed

+82
-44
lines changed

0-bootstrap/versions.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,16 @@ terraform {
1919
required_providers {
2020
google = {
2121
// version 4.31.0 removed because of issue https://github.com/hashicorp/terraform-provider-google/issues/12226
22+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2223
source = "hashicorp/google"
23-
version = ">= 3.50, != 4.31.0, < 7.0"
24+
version = ">= 3.50, != 4.31.0, != 6.26.0, != 6.27.0, < 7.0"
2425
}
2526

2627
google-beta = {
2728
// version 4.31.0 removed because of issue https://github.com/hashicorp/terraform-provider-google/issues/12226
29+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2830
source = "hashicorp/google-beta"
29-
version = ">= 3.50, != 4.31.0, < 7.0"
31+
version = ">= 3.50, != 4.31.0, != 6.26.0, != 6.27.0, < 7.0"
3032
}
3133

3234
// Un-comment gitlab required_providers when using gitlab CI/CD

3-networks-hub-and-spoke/envs/development/versions.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2122
source = "hashicorp/google"
22-
version = ">= 3.50"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2324
}
2425
google-beta = {
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2527
source = "hashicorp/google-beta"
26-
version = ">= 3.50"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2729
}
2830
}
2931
}

3-networks-hub-and-spoke/envs/nonproduction/versions.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2122
source = "hashicorp/google"
22-
version = ">= 3.50"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2324
}
2425
google-beta = {
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2527
source = "hashicorp/google-beta"
26-
version = ">= 3.50"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2729
}
2830
}
2931
}

3-networks-hub-and-spoke/envs/production/versions.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2122
source = "hashicorp/google"
22-
version = ">= 3.50"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2324
}
2425
google-beta = {
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2527
source = "hashicorp/google-beta"
26-
version = ">= 3.50"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2729
}
2830
}
2931
}

3-networks-hub-and-spoke/envs/shared/versions.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2122
source = "hashicorp/google"
22-
version = ">= 3.50"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2324
}
2425
google-beta = {
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2527
source = "hashicorp/google-beta"
26-
version = ">= 3.50"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2729
}
2830
}
2931
}

3-networks-hub-and-spoke/modules/base_env/versions.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2122
source = "hashicorp/google"
22-
version = ">= 3.50"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2324
}
2425
google-beta = {
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2527
source = "hashicorp/google-beta"
26-
version = ">= 3.50"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2729
}
2830
}
2931

3-networks-hub-and-spoke/modules/dedicated_interconnect/versions.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2122
source = "hashicorp/google"
22-
version = ">= 3.50"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2324
}
2425
google-beta = {
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2527
source = "hashicorp/google-beta"
26-
version = ">= 3.50"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2729
}
2830
}
2931

3-networks-hub-and-spoke/modules/hierarchical_firewall_policy/versions.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2122
source = "hashicorp/google"
22-
version = ">= 3.82"
23+
version = ">= 3.82, != 6.26.0, != 6.27.0, < 7.0"
2324
}
2425
google-beta = {
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2527
source = "hashicorp/google-beta"
26-
version = ">= 3.82"
28+
version = ">= 3.82, != 6.26.0, != 6.27.0, < 7.0"
2729
}
2830
random = {
2931
source = "hashicorp/random"

3-networks-hub-and-spoke/modules/partner_interconnect/versions.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2122
source = "hashicorp/google"
22-
version = ">= 3.50"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2324
}
2425
google-beta = {
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2527
source = "hashicorp/google-beta"
26-
version = ">= 3.50"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2729
}
2830
}
2931

3-networks-hub-and-spoke/modules/shared_vpc/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ terraform {
1919
required_providers {
2020
google = {
2121
source = "hashicorp/google"
22-
version = ">= 3.50"
22+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2323
}
2424
google-beta = {
2525
source = "hashicorp/google-beta"
26-
version = ">= 3.50"
26+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2727
}
2828
random = {
2929
source = "hashicorp/random"

0 commit comments

Comments
 (0)