Skip to content

Commit

Permalink
remove other example providers
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody committed Oct 5, 2023
1 parent ac95545 commit 4f5acac
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 30 deletions.
6 changes: 2 additions & 4 deletions examples/app_engine/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@ terraform {
source = "hashicorp/google-beta"
}
null = {
source = "hashicorp/null"
version = "~> 3.0"
source = "hashicorp/null"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
source = "hashicorp/random"
}
}
}
3 changes: 1 addition & 2 deletions examples/budget_project/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ terraform {
source = "hashicorp/google"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
source = "hashicorp/random"
}
}
}
3 changes: 1 addition & 2 deletions examples/fabric_project/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ terraform {
source = "hashicorp/google"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
source = "hashicorp/random"
}
}
}
6 changes: 2 additions & 4 deletions examples/gke_shared_vpc/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@ terraform {
source = "hashicorp/google-beta"
}
null = {
source = "hashicorp/null"
version = "~> 3.0"
source = "hashicorp/null"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
source = "hashicorp/random"
}
}
}
6 changes: 2 additions & 4 deletions examples/group_project/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,10 @@ terraform {
version = "~> 0.1.12"
}
null = {
source = "hashicorp/null"
version = "~> 3.0"
source = "hashicorp/null"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
source = "hashicorp/random"
}
}
}
6 changes: 2 additions & 4 deletions examples/project-hierarchy/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,10 @@ terraform {
version = "~> 0.1.12"
}
null = {
source = "hashicorp/null"
version = "~> 3.0"
source = "hashicorp/null"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
source = "hashicorp/random"
}
}
}
6 changes: 2 additions & 4 deletions examples/shared_vpc/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@ terraform {
source = "hashicorp/google-beta"
}
null = {
source = "hashicorp/null"
version = "~> 3.0"
source = "hashicorp/null"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
source = "hashicorp/random"
}
}
}
6 changes: 2 additions & 4 deletions examples/simple_project/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@ terraform {
source = "hashicorp/google-beta"
}
null = {
source = "hashicorp/null"
version = "~> 3.0"
source = "hashicorp/null"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
source = "hashicorp/random"
}
}
}
6 changes: 4 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ terraform {
required_version = ">=0.13.0"
required_providers {
google = {
source = "hashicorp/google"
source = "hashicorp/google"
version = ">= 4.28, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
source = "hashicorp/google-beta"
version = ">= 4.28, < 6"
}
}
provider_meta "google" {
Expand Down

0 comments on commit 4f5acac

Please sign in to comment.