Skip to content

Commit

Permalink
feat: Set Terraform required_version to >= 1.5 (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
NimJay committed Sep 2, 2024
1 parent c52aacf commit 5cc3fc4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion infra/examples/simple_example/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
*/

terraform {
required_version = ">= 1.5"
required_providers {
google = {
source = "hashicorp/google"
version = "~> 5.40"
}
}
required_version = ">= 0.13"
}
2 changes: 1 addition & 1 deletion infra/examples/suffix_example/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
*/

terraform {
required_version = ">= 1.5"
required_providers {
google = {
source = "hashicorp/google"
version = "~> 5.40"
}
}
required_version = ">= 0.13"
}
2 changes: 1 addition & 1 deletion infra/test/setup/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

terraform {
required_version = ">= 0.13"
required_version = ">= 1.5"
required_providers {
google = {
source = "hashicorp/google"
Expand Down
2 changes: 1 addition & 1 deletion infra/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

terraform {
required_version = ">= 0.13"
required_version = ">= 1.5"
required_providers {
google = {
source = "hashicorp/google"
Expand Down

0 comments on commit 5cc3fc4

Please sign in to comment.