mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-11 03:26:50 +02:00
Add required_providers to set minimum versions (#464)
This commit is contained in:
committed by
Max Williams
parent
630a0cc3fb
commit
ac62edc872
@@ -12,6 +12,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Write your awesome addition here (by @you)
|
- Write your awesome addition here (by @you)
|
||||||
|
- Added `required_providers` to enforce provider minimum versions (by @dpiddockcmp)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,10 @@
|
|||||||
|
|
||||||
terraform {
|
terraform {
|
||||||
required_version = ">= 0.12"
|
required_version = ">= 0.12"
|
||||||
|
|
||||||
|
required_providers {
|
||||||
|
aws = ">= 2.8"
|
||||||
|
local = ">= 1.2"
|
||||||
|
null = ">= 2.1"
|
||||||
|
template = ">= 2.1"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user