Skip to content

Commit

Permalink
Merge pull request #51 from lgallard/fix/version-syntax-2
Browse files Browse the repository at this point in the history
Fix: Terraform version syntax
  • Loading branch information
lgallard authored Jun 3, 2024
2 parents a56f3c7 + c003e48 commit c6e38a7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.11.3 (June 3, 2024)

FIX:

* Change Terraform version requirements syntax

## 0.11.2 (June 3, 2024)

FIX:

* Terraform version requirements syntax

## 0.11.1 (June 3, 2024)

ENHANCEMENTS:
Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
terraform {
required_version = ">= v0.13.7"
required_version = "~> v0.13.7"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 2.67.0"
version = "~> 2.67.0"
}
}
}

0 comments on commit c6e38a7

Please sign in to comment.