Skip to content

Commit b2640ff

Browse files
authored
chore: relax examples tpg constraint (#126)
1 parent 981a967 commit b2640ff

File tree

7 files changed

+22
-31
lines changed

7 files changed

+22
-31
lines changed

examples/gh-runner-gke-dind/versions.tf

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@
1717
terraform {
1818
required_providers {
1919
google = {
20-
source = "hashicorp/google"
21-
version = "~> 4.0"
20+
source = "hashicorp/google"
2221
}
2322
google-beta = {
24-
source = "hashicorp/google-beta"
25-
version = "~> 4.0"
23+
source = "hashicorp/google-beta"
2624
}
2725
kubernetes = {
2826
source = "hashicorp/kubernetes"

examples/gh-runner-gke-simple/versions.tf

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@
1717
terraform {
1818
required_providers {
1919
google = {
20-
source = "hashicorp/google"
21-
version = "~> 4.0"
20+
source = "hashicorp/google"
2221
}
2322
google-beta = {
24-
source = "hashicorp/google-beta"
25-
version = "~> 4.0"
23+
source = "hashicorp/google-beta"
2624
}
2725
kubernetes = {
2826
source = "hashicorp/kubernetes"

examples/gh-runner-mig-container-vm-dind/versions.tf

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@
1717
terraform {
1818
required_providers {
1919
google = {
20-
source = "hashicorp/google"
21-
version = "~> 4.0"
20+
source = "hashicorp/google"
2221
}
2322
google-beta = {
24-
source = "hashicorp/google-beta"
25-
version = "~> 4.0"
23+
source = "hashicorp/google-beta"
2624
}
2725
}
2826
required_version = ">= 0.13"

examples/gh-runner-mig-container-vm-simple/versions.tf

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@
1717
terraform {
1818
required_providers {
1919
google = {
20-
source = "hashicorp/google"
21-
version = "~> 4.0"
20+
source = "hashicorp/google"
2221
}
2322
google-beta = {
24-
source = "hashicorp/google-beta"
25-
version = "~> 4.0"
23+
source = "hashicorp/google-beta"
2624
}
2725
}
2826
required_version = ">= 0.13"

examples/gh-runner-mig-native-packer/providers.tf examples/gh-runner-mig-native-packer/versions.tf

+10-7
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,14 @@
1414
* limitations under the License.
1515
*/
1616

17-
18-
provider "google" {
19-
version = "~> 4.0"
20-
}
21-
22-
provider "google-beta" {
23-
version = "~> 4.0"
17+
terraform {
18+
required_providers {
19+
google = {
20+
source = "hashicorp/google"
21+
}
22+
google-beta = {
23+
source = "hashicorp/google-beta"
24+
}
25+
}
26+
required_version = ">= 0.13"
2427
}

examples/gh-runner-mig-native-simple/versions.tf

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@
1717
terraform {
1818
required_providers {
1919
google = {
20-
source = "hashicorp/google"
21-
version = "~> 4.0"
20+
source = "hashicorp/google"
2221
}
2322
google-beta = {
24-
source = "hashicorp/google-beta"
25-
version = "~> 4.0"
23+
source = "hashicorp/google-beta"
2624
}
2725
}
2826
required_version = ">= 0.13"

examples/oidc-simple/versions.tf

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@
1717
terraform {
1818
required_providers {
1919
google = {
20-
source = "hashicorp/google"
21-
version = "~> 4.0"
20+
source = "hashicorp/google"
2221
}
2322
google-beta = {
24-
source = "hashicorp/google-beta"
25-
version = "~> 4.0"
23+
source = "hashicorp/google-beta"
2624
}
2725
}
2826
required_version = ">= 0.13"

0 commit comments

Comments
 (0)