Skip to content

Commit 69d7a3c

Browse files
releasing 1.3.0
1 parent b291679 commit 69d7a3c

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ project adheres to [Semantic Versioning](http://semver.org/).
99

1010
### Added
1111

12-
- Some excellent feature. (you're on fire, @me 🔥)
12+
- A tiny but mighty feature. (you're on fire, @me 🔥)
1313

1414
### Changed
1515

16-
- A very thoughtful change. (Boomshakalaka, @self 🏀)
16+
- A subtle but thoughtful change. (Boomshakalaka, @self 🏀)
1717

1818
## [[v1.3.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.2.0...v1.3.0)] - 2018-07-11]
1919

@@ -23,6 +23,10 @@ project adheres to [Semantic Versioning](http://semver.org/).
2323
- kubelet_node_labels worker group option allows setting --node-labels= in kubelet. (Hat-tip, @bshelton229 👒)
2424
- `worker_iam_role_arn` added to outputs. Sweet, @hatemosphere 🔥
2525

26+
### Changed
27+
28+
- Worker subnets able to be specified as a dedicated list per autoscaling group. (up top, @bshelton229 🙏)
29+
2630
## [[v1.2.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.1.0...v1.2.0)] - 2018-07-01]
2731

2832
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Generate them like so:
6363

6464
```bash
6565
go get github.com/segmentio/terraform-docs
66-
terraform-docs md ./ | cat -s | ghead -n -1 > README.md
66+
terraform-docs md ./ | cat -s | tail -r | tail -n +2 | tail -r > README.md
6767
```
6868

6969
## Contributing
@@ -97,7 +97,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
9797
| cluster_name | Name of the EKS cluster. Also used as a prefix in names of related resources. | string | - | yes |
9898
| 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 |
9999
| cluster_version | Kubernetes version to use for the EKS cluster. | string | `1.10` | no |
100-
| 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 |
100+
| 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 |
101101
| kubeconfig_aws_authenticator_additional_args | Any additional arguments to pass to the authenticator such as the role to assume. e.g. ["-r", "MyEksRole"]. | list | `<list>` | no |
102102
| kubeconfig_aws_authenticator_command | Command to use to to fetch AWS EKS credentials. | string | `aws-iam-authenticator` | no |
103103
| kubeconfig_aws_authenticator_env_variables | Environment variables that should be used when executing the authenticator. e.g. { AWS_PROFILE = "eks"}. | map | `<map>` | no |

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
6565
* ```bash
6666
* go get github.com/segmentio/terraform-docs
67-
* terraform-docs md ./ | cat -s | ghead -n -1 > README.md
67+
* terraform-docs md ./ | cat -s | tail -r | tail -n +2 | tail -r > README.md
6868
* ```
6969
7070
* ## Contributing

0 commit comments

Comments
 (0)