Skip to content

Commit

Permalink
Merge pull request #55 from lgallard/fix/tf-version-constraint
Browse files Browse the repository at this point in the history
Fix Terraform version constraints
  • Loading branch information
lgallard authored Jun 3, 2024
2 parents c6e38a7 + fb2ebfb commit 3ab6be6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.11.4 (June 3, 2024)

FIX:

* Fix required constraints
* Remove Dependabot

## 0.11.3 (June 3, 2024)

FIX:
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 3ab6be6

Please sign in to comment.