diff --git a/CHANGELOG.md b/CHANGELOG.md index f211f88ab5..fd848f07d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,11 +21,12 @@ project adheres to [Semantic Versioning](http://semver.org/). ### Changed + - Update to EKS 1.14 (by @nauxliu) - Support map users and roles to multiple groups (by @nauxliu) - Fixed errors sometimes happening during destroy due to usage of coalesce() in local.tf (by @petrikero) - Removed historical mention of adding caller's IPv4 to cluster security group (by @dpiddockcmp) - - Write your awesome change here (by @you) - Wrapped `kubelet_extra_args` in double quotes instead of singe quotes (by @nxf5025) + - Write your awesome change here (by @you) # History diff --git a/README.md b/README.md index 1fdd43c7f6..e302bb9a23 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a | cluster\_log\_retention\_in\_days | Number of days to retain log events. Default retention - 90 days. | number | `"90"` | no | | cluster\_name | Name of the EKS cluster. Also used as a prefix in names of related resources. | string | n/a | 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 | string | `""` | no | -| cluster\_version | Kubernetes version to use for the EKS cluster. | string | `"1.13"` | no | +| cluster\_version | Kubernetes version to use for the EKS cluster. | string | `"1.14"` | no | | config\_output\_path | Where to save the Kubectl config file (if `write_kubeconfig = true`). Should end in a forward slash `/` . | string | `"./"` | no | | iam\_path | If provided, all IAM roles will be created on this path. | 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(string) | `[]` | no | diff --git a/variables.tf b/variables.tf index 5bbf1a9a89..c85ac17b27 100644 --- a/variables.tf +++ b/variables.tf @@ -28,7 +28,7 @@ variable "cluster_security_group_id" { variable "cluster_version" { description = "Kubernetes version to use for the EKS cluster." type = string - default = "1.13" + default = "1.14" } variable "config_output_path" {