Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion anthos-bm-apigee/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

terraform {
required_version = ">= v0.15.5, < 1.13" # this line should not change during a release
required_version = "< 1.14" # this line should not change during a release
required_providers {
google = {
source = "hashicorp/google"
Expand Down
2 changes: 1 addition & 1 deletion anthos-bm-gcp-terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

terraform {
required_version = ">= v0.15.4, < 1.13" # this line should not change during a release
required_version = "< 1.14" # this line should not change during a release
required_providers {
google = {
source = "hashicorp/google"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

terraform {
required_version = ">= v0.15.5, < 1.13" # this line should not change during a release
required_version = "< 1.14" # this line should not change during a release
required_providers {
google = {
source = "hashicorp/google"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

terraform {
required_version = ">= v0.15.5, < 1.13" # this line should not change during a release
required_version = "< 1.14" # this line should not change during a release
required_providers {
google = {
source = "hashicorp/google"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

terraform {
required_version = ">= v0.15.5, < 1.13" # this line should not change during a release
required_version = "< 1.14" # this line should not change during a release
required_providers {
google = {
source = "hashicorp/google"
Expand Down
2 changes: 1 addition & 1 deletion test/setup/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

terraform {
required_version = "< 1.13"
required_version = "< 1.14"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This version constraint is missing a lower bound. Based on the modules used in this configuration (e.g., terraform-google-modules/project-factory/google which requires Terraform >= 1.3) and for consistency with other modules in this repository, a lower bound should be added to prevent issues with older Terraform versions. A constraint of >= 0.15.4 would be consistent with other modules.

  required_version = ">= 0.15.4, < 1.14"

required_providers {
google = {
source = "hashicorp/google"
Expand Down