Skip to content

Commit

Permalink
Feature/v3 provider support (#5)
Browse files Browse the repository at this point in the history
* Update module versions to support v3 provider

* update CHANGELOG
  • Loading branch information
marcincuber committed Aug 5, 2020
1 parent 0255844 commit bb63105
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -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']
Expand All @@ -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
Expand Down
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file.
<a name="unreleased"></a>
## [Unreleased]

- update docs and add chglog
- Update module versions to support v3 provider


<a name="2.0.0"></a>
## [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))


<a name="1.0.3"></a>
Expand Down Expand Up @@ -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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
terraform {
required_version = ">= 0.12.6, < 0.14"

required_providers {
aws = "~> 2.63"
aws = ">= 2.63, < 4.0"
}
}

0 comments on commit bb63105

Please sign in to comment.