Skip to content

Commit 35202f1

Browse files
fix: Fix for google-terraform-provider in version 6.26.0 (#1408)
1 parent a5dec34 commit 35202f1

File tree

22 files changed

+88
-82
lines changed

22 files changed

+88
-82
lines changed

0-bootstrap/versions.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +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 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
22+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2323
source = "hashicorp/google"
24-
version = ">= 3.50, != 4.31.0, < 6.26.0"
24+
version = ">= 3.50, != 4.31.0, != 6.26.0, != 6.27.0, < 7.0"
2525
}
2626

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

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

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2222
source = "hashicorp/google"
23-
version = ">= 3.50, < 6.26.0"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2424
}
2525
google-beta = {
26-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2727
source = "hashicorp/google-beta"
28-
version = ">= 3.50, < 6.26.0"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2929
}
3030
}
3131
}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2222
source = "hashicorp/google"
23-
version = ">= 3.50, < 6.26.0"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2424
}
2525
google-beta = {
26-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2727
source = "hashicorp/google-beta"
28-
version = ">= 3.50, < 6.26.0"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2929
}
3030
}
3131
}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2222
source = "hashicorp/google"
23-
version = ">= 3.50, < 6.26.0"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2424
}
2525
google-beta = {
26-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2727
source = "hashicorp/google-beta"
28-
version = ">= 3.50, < 6.26.0"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2929
}
3030
}
3131
}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2222
source = "hashicorp/google"
23-
version = ">= 3.50, < 6.26.0"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2424
}
2525
google-beta = {
26-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2727
source = "hashicorp/google-beta"
28-
version = ">= 3.50, < 6.26.0"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2929
}
3030
}
3131
}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2222
source = "hashicorp/google"
23-
version = ">= 3.50, < 6.26.0"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2424
}
2525
google-beta = {
26-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2727
source = "hashicorp/google-beta"
28-
version = ">= 3.50, < 6.26.0"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2929
}
3030
}
3131

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2222
source = "hashicorp/google"
23-
version = ">= 3.50, < 6.26.0"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2424
}
2525
google-beta = {
26-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2727
source = "hashicorp/google-beta"
28-
version = ">= 3.50, < 6.26.0"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2929
}
3030
}
3131

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2222
source = "hashicorp/google"
23-
version = ">= 3.82, < 6.26.0"
23+
version = ">= 3.82, != 6.26.0, != 6.27.0, < 7.0"
2424
}
2525
google-beta = {
26-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2727
source = "hashicorp/google-beta"
28-
version = ">= 3.82, < 6.26.0"
28+
version = ">= 3.82, != 6.26.0, != 6.27.0, < 7.0"
2929
}
3030
random = {
3131
source = "hashicorp/random"

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ terraform {
1818
required_version = ">= 0.13"
1919
required_providers {
2020
google = {
21-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
21+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2222
source = "hashicorp/google"
23-
version = ">= 3.50, < 6.26.0"
23+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2424
}
2525
google-beta = {
26-
// version 6.26.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
26+
// version 6.26.0 and 6.27.0 removed because of the bug https://github.com/hashicorp/terraform-provider-google/issues/21950
2727
source = "hashicorp/google-beta"
28-
version = ">= 3.50, < 6.26.0"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2929
}
3030
}
3131

3-networks-hub-and-spoke/modules/shared_vpc/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, < 6.26.0"
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, < 6.26.0"
28+
version = ">= 3.50, != 6.26.0, != 6.27.0, < 7.0"
2729
}
2830
random = {
2931
source = "hashicorp/random"

0 commit comments

Comments
 (0)