diff --git a/CHANGELOG.md b/CHANGELOG.md index ec2fa97..3ad872b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,16 +5,29 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). - -## [[v2.0.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.8.0...HEAD)] - 2019-01-??] +## [[v2.0.1](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v2.0.0...HEAD)] - 2019-01-??] ### Added + - Write your awesome addition here (by @you) + +### Changed + - Write your awesome change here (by @you) + +## [[v2.0.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.8.0...v2.0.0)] - 2018-12-14] + +### Added + - (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). +- (Breaking Change) New variables `cluster_create_security_group` and `worker_create_security_group` to stop `value of 'count' cannot be computed` error. - Added ability to choose local-exec interpreter (by @rothandrew) ### Changed + - Added `--with-aggregate-type-defaults` option to terraform-docs (by @max-rocket-internet) - Updated AMI ID filtering to only filter AMIs from current cluster k8s version (by @max-rocket-internet) +- Added `pre-commit-terraform` git hook to automatically create documentation of inputs/outputs (by @antonbabenko) +- Travis fixes (by @RothAndrew) +- Fixed some Windows compatibility issues (by @RothAndrew) ## [[v1.8.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.7.0...v1.8.0)] - 2018-12-04] diff --git a/README.md b/README.md index c0cbd9d..fb45271 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a | cluster\_delete\_timeout | Timeout value when deleting the EKS cluster. | string | `15m` | no | | cluster\_name | Name of the EKS cluster. Also used as a prefix in names of related resources. | string | - | yes | | 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 | -| cluster\_version | Kubernetes version to use for the EKS cluster. | string | `1.10` | no | +| cluster\_version | Kubernetes version to use for the EKS cluster. | string | `1.11` | no | | config\_output\_path | Where to save the Kubectl config file (if `write_kubeconfig = true`). Should end in a forward slash `/` . | string | `./` | no | | 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 | | kubeconfig\_aws\_authenticator\_command | Command to use to to fetch AWS EKS credentials. | string | `aws-iam-authenticator` | no | diff --git a/variables.tf b/variables.tf index fbb7d6a..c17ad55 100644 --- a/variables.tf +++ b/variables.tf @@ -9,7 +9,7 @@ variable "cluster_security_group_id" { variable "cluster_version" { description = "Kubernetes version to use for the EKS cluster." - default = "1.10" + default = "1.11" } variable "config_output_path" { diff --git a/version b/version index 0d0c52f..46b105a 100644 --- a/version +++ b/version @@ -1 +1 @@ -v1.4.0 +v2.0.0