Skip to content

Commit

Permalink
chore: relax examples tpg constraint (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody authored Oct 19, 2023
1 parent 981a967 commit b2640ff
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 31 deletions.
6 changes: 2 additions & 4 deletions examples/gh-runner-gke-dind/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
6 changes: 2 additions & 4 deletions examples/gh-runner-gke-simple/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
kubernetes = {
source = "hashicorp/kubernetes"
Expand Down
6 changes: 2 additions & 4 deletions examples/gh-runner-mig-container-vm-dind/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
}
required_version = ">= 0.13"
Expand Down
6 changes: 2 additions & 4 deletions examples/gh-runner-mig-container-vm-simple/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
}
required_version = ">= 0.13"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,14 @@
* limitations under the License.
*/


provider "google" {
version = "~> 4.0"
}

provider "google-beta" {
version = "~> 4.0"
terraform {
required_providers {
google = {
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
}
}
required_version = ">= 0.13"
}
6 changes: 2 additions & 4 deletions examples/gh-runner-mig-native-simple/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
}
required_version = ">= 0.13"
Expand Down
6 changes: 2 additions & 4 deletions examples/oidc-simple/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
source = "hashicorp/google-beta"
}
}
required_version = ">= 0.13"
Expand Down

0 comments on commit b2640ff

Please sign in to comment.