diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 66adb9b..d688e1b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v3.1.0 + rev: v3.2.0 hooks: - id: check-added-large-files args: ['--maxkb=500'] @@ -18,7 +18,7 @@ repos: args: ['--allow-missing-credentials'] - id: trailing-whitespace - repo: git://github.com/antonbabenko/pre-commit-terraform - rev: v1.30.0 + rev: v1.31.0 hooks: - id: terraform_fmt - id: terraform_docs diff --git a/CHANGELOG.md b/CHANGELOG.md index 70d1d22..04f7ff7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file. ## [Unreleased] -- update docs and add chglog +- Update module versions to support v3 provider + + + +## [2.0.0] - 2020-05-22 + +- Lock minimum version of provider and add force_update_version ([#4](https://github.com/umotif-public/terraform-aws-eks-node-group/issues/4)) +- Feature/updates ([#3](https://github.com/umotif-public/terraform-aws-eks-node-group/issues/3)) @@ -34,7 +41,8 @@ All notable changes to this project will be documented in this file. - Initial commit -[Unreleased]: https://github.com/umotif-public/terraform-aws-eks-node-group/compare/1.0.3...HEAD +[Unreleased]: https://github.com/umotif-public/terraform-aws-eks-node-group/compare/2.0.0...HEAD +[2.0.0]: https://github.com/umotif-public/terraform-aws-eks-node-group/compare/1.0.3...2.0.0 [1.0.3]: https://github.com/umotif-public/terraform-aws-eks-node-group/compare/1.0.2...1.0.3 [1.0.2]: https://github.com/umotif-public/terraform-aws-eks-node-group/compare/1.0.1...1.0.2 [1.0.1]: https://github.com/umotif-public/terraform-aws-eks-node-group/compare/1.0.0...1.0.1 diff --git a/README.md b/README.md index 5003401..1f40c11 100644 --- a/README.md +++ b/README.md @@ -59,13 +59,14 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http | Name | Version | |------|---------| -| aws | ~> 2.63 | +| terraform | >= 0.12.6, < 0.14 | +| aws | >= 2.63, < 4.0 | ## Providers | Name | Version | |------|---------| -| aws | ~> 2.63 | +| aws | >= 2.63, < 4.0 | | random | n/a | ## Inputs diff --git a/versions.tf b/versions.tf index a062253..2962272 100644 --- a/versions.tf +++ b/versions.tf @@ -1,5 +1,7 @@ terraform { + required_version = ">= 0.12.6, < 0.14" + required_providers { - aws = "~> 2.63" + aws = ">= 2.63, < 4.0" } }