mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-25 10:08:25 +02:00
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
This commit is contained in:
17
CHANGELOG.md
17
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]
|
||||
|
||||
|
||||
@@ -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 |
|
||||
|
||||
@@ -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" {
|
||||
|
||||
Reference in New Issue
Block a user