Skip to content

Commit

Permalink
fix: adjust provider version constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsorbo committed Sep 20, 2024
1 parent b23eeb0 commit 2c1e98e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
8 changes: 6 additions & 2 deletions examples/gh-runner-gke-dind-rootless/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@

terraform {
required_providers {
# TODO: undo version constraint pending provider bug
# https://github.com/GoogleCloudPlatform/magic-modules/pull/11688
google = {
source = "hashicorp/google"
source = "hashicorp/google"
version = ">= 4.3.0, < 6.2"
}
google-beta = {
source = "hashicorp/google-beta"
source = "hashicorp/google-beta"
version = ">= 4.3.0, < 6.2"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
8 changes: 6 additions & 2 deletions examples/gh-runner-gke-dind/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@

terraform {
required_providers {
# TODO: undo version constraint pending provider bug
# https://github.com/GoogleCloudPlatform/magic-modules/pull/11688
google = {
source = "hashicorp/google"
source = "hashicorp/google"
version = ">= 4.3.0, < 6.2"
}
google-beta = {
source = "hashicorp/google-beta"
source = "hashicorp/google-beta"
version = ">= 4.3.0, < 6.2"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
8 changes: 6 additions & 2 deletions examples/gh-runner-gke-simple/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@

terraform {
required_providers {
# TODO: undo version constraint pending provider bug
# https://github.com/GoogleCloudPlatform/magic-modules/pull/11688
google = {
source = "hashicorp/google"
source = "hashicorp/google"
version = ">= 4.3.0, < 6.2"
}
google-beta = {
source = "hashicorp/google-beta"
source = "hashicorp/google-beta"
version = ">= 4.3.0, < 6.2"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
4 changes: 2 additions & 2 deletions modules/gh-runner-gke/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ terraform {

google = {
source = "hashicorp/google"
version = ">= 4.3.0, < 5.44"
version = ">= 4.3.0, < 7"
}

google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.3.0, < 5.44"
version = ">= 4.3.0, < 7"
}

kubernetes = {
Expand Down

0 comments on commit 2c1e98e

Please sign in to comment.