Skip to content

Commit

Permalink
Add required_providers to set minimum versions (terraform-aws-modul…
Browse files Browse the repository at this point in the history
  • Loading branch information
dpiddockcmp authored and max-rocket-internet committed Aug 6, 2019
1 parent 630a0cc commit ac62edc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
### Added

- Write your awesome addition here (by @you)
- Added `required_providers` to enforce provider minimum versions (by @dpiddockcmp)

### Changed

Expand Down
8 changes: 7 additions & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

terraform {
required_version = ">= 0.12"

required_providers {
aws = ">= 2.8"
local = ">= 1.2"
null = ">= 2.1"
template = ">= 2.1"
}
}

0 comments on commit ac62edc

Please sign in to comment.