From 69d7a3ce4a5d51c91569b078947efdbd10e3b1eb Mon Sep 17 00:00:00 2001 From: Brandon O'Connor Date: Wed, 11 Jul 2018 23:47:35 -0700 Subject: [PATCH] releasing 1.3.0 --- CHANGELOG.md | 8 ++++++-- README.md | 4 ++-- main.tf | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b905aeb..7e21051 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,11 @@ project adheres to [Semantic Versioning](http://semver.org/). ### Added -- Some excellent feature. (you're on fire, @me 🔥) +- A tiny but mighty feature. (you're on fire, @me 🔥) ### Changed -- A very thoughtful change. (Boomshakalaka, @self 🏀) +- A subtle but thoughtful change. (Boomshakalaka, @self 🏀) ## [[v1.3.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.2.0...v1.3.0)] - 2018-07-11] @@ -23,6 +23,10 @@ project adheres to [Semantic Versioning](http://semver.org/). - kubelet_node_labels worker group option allows setting --node-labels= in kubelet. (Hat-tip, @bshelton229 👒) - `worker_iam_role_arn` added to outputs. Sweet, @hatemosphere 🔥 +### Changed + +- Worker subnets able to be specified as a dedicated list per autoscaling group. (up top, @bshelton229 🙏) + ## [[v1.2.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.1.0...v1.2.0)] - 2018-07-01] ### Added diff --git a/README.md b/README.md index 45e6f36..788c906 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Generate them like so: ```bash go get github.com/segmentio/terraform-docs -terraform-docs md ./ | cat -s | ghead -n -1 > README.md +terraform-docs md ./ | cat -s | tail -r | tail -n +2 | tail -r > README.md ``` ## Contributing @@ -97,7 +97,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a | 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 | -| config_output_path | Determines where config files are placed if using configure_kubectl_session and you want config files to land outside the current working directory. | string | `./` | no | +| config_output_path | Determines where config files are placed if using configure_kubectl_session and you want config files to land outside the current working directory. 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 | | kubeconfig_aws_authenticator_env_variables | Environment variables that should be used when executing the authenticator. e.g. { AWS_PROFILE = "eks"}. | map | `` | no | diff --git a/main.tf b/main.tf index 085c0c4..4cdb012 100644 --- a/main.tf +++ b/main.tf @@ -64,7 +64,7 @@ * ```bash * go get github.com/segmentio/terraform-docs -* terraform-docs md ./ | cat -s | ghead -n -1 > README.md +* terraform-docs md ./ | cat -s | tail -r | tail -n +2 | tail -r > README.md * ``` * ## Contributing