Skip to content

Commit

Permalink
Merge pull request #2 from lgallard/feature/provider-requirement
Browse files Browse the repository at this point in the history
Add provider version requirement
  • Loading branch information
lgallard authored Jun 29, 2020
2 parents 02acd7c + ae85112 commit 926b3f0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.2.0 (June 29, 2020)

FIXES:

* Add AWS provider version requirement

## 0.1.2 (June 27, 2020)

FIXES:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ module "secrets-manager-5" {

| Name | Version |
|------|---------|
| aws | n/a |
| aws | >= 2.67.0 |

## Inputs

Expand Down
7 changes: 7 additions & 0 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
terraform {

required_providers {
aws = ">= 2.67.0"
}
}

0 comments on commit 926b3f0

Please sign in to comment.