Skip to content

Commit 982541a

Browse files
Updates for v2.0.0 release (#216)
* Updates for version 2.0 release * Updating readme * update this version file that I've never seen before * finish changelog updates
1 parent 23a96e8 commit 982541a

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,29 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
66
project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [[v2.0.1](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v2.0.0...HEAD)] - 2019-01-??]
89

9-
## [[v2.0.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.8.0...HEAD)] - 2019-01-??]
10+
### Added
11+
- Write your awesome addition here (by @you)
12+
13+
### Changed
14+
- Write your awesome change here (by @you)
15+
16+
## [[v2.0.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.8.0...v2.0.0)] - 2018-12-14]
1017

1118
### Added
19+
1220
- (Breaking Change) New input variables `map_accounts_count`, `map_roles_count` and `map_users_count` to allow using computed values as part of `map_accounts`, `map_roles` and `map_users` configs (by @chili-man on behalf of OpenGov).
21+
- (Breaking Change) New variables `cluster_create_security_group` and `worker_create_security_group` to stop `value of 'count' cannot be computed` error.
1322
- Added ability to choose local-exec interpreter (by @rothandrew)
1423

1524
### Changed
25+
1626
- Added `--with-aggregate-type-defaults` option to terraform-docs (by @max-rocket-internet)
1727
- Updated AMI ID filtering to only filter AMIs from current cluster k8s version (by @max-rocket-internet)
28+
- Added `pre-commit-terraform` git hook to automatically create documentation of inputs/outputs (by @antonbabenko)
29+
- Travis fixes (by @RothAndrew)
30+
- Fixed some Windows compatibility issues (by @RothAndrew)
1831

1932
## [[v1.8.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.7.0...v1.8.0)] - 2018-12-04]
2033

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
105105
| cluster\_delete\_timeout | Timeout value when deleting the EKS cluster. | string | `15m` | no |
106106
| cluster\_name | Name of the EKS cluster. Also used as a prefix in names of related resources. | string | - | yes |
107107
| cluster\_security\_group\_id | If provided, the EKS cluster will be attached to this security group. If not given, a security group will be created with necessary ingres/egress to work with the workers and provide API access to your current IP/32. | string | `` | no |
108-
| cluster\_version | Kubernetes version to use for the EKS cluster. | string | `1.10` | no |
108+
| cluster\_version | Kubernetes version to use for the EKS cluster. | string | `1.11` | no |
109109
| config\_output\_path | Where to save the Kubectl config file (if `write_kubeconfig = true`). Should end in a forward slash `/` . | string | `./` | no |
110110
| kubeconfig\_aws\_authenticator\_additional\_args | Any additional arguments to pass to the authenticator such as the role to assume. e.g. ["-r", "MyEksRole"]. | list | `[]` | no |
111111
| kubeconfig\_aws\_authenticator\_command | Command to use to to fetch AWS EKS credentials. | string | `aws-iam-authenticator` | no |

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ variable "cluster_security_group_id" {
99

1010
variable "cluster_version" {
1111
description = "Kubernetes version to use for the EKS cluster."
12-
default = "1.10"
12+
default = "1.11"
1313
}
1414

1515
variable "config_output_path" {

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.4.0
1+
v2.0.0

0 commit comments

Comments
 (0)