Skip to content

Commit 5eefa51

Browse files
szachovyCopilot
andcommitted
Relax Terraform version constraint to accept any 1.x release
Change required_version from exact '1.0.10' to '>= 1.0.0, < 2.0.0' so that newer Terraform 1.x versions work without manual binary download. Closes #40 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 0ab8ce7 commit 5eefa51

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
* Completed [ARCHITECTURE.md](./docs/ARCHITECTURE.md) (#93)
2222
* Migrated CI from self-hosted to GitHub-hosted runners with Docker-in-Docker test infrastructure. (#94)
2323
* Test workflow always builds service images locally for reproducibility. (#97)
24+
* Relaxed Terraform version constraint to accept any 1.x release. (#40)
2425

2526
### Fixed
2627

tests/setup/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = "1.0.10"
2+
required_version = ">= 1.0.0, < 2.0.0"
33
required_providers {
44
null = {
55
source = "hashicorp/null"

0 commit comments

Comments
 (0)