mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-10 19:16:50 +02:00
releasing 1.3.0
This commit is contained in:
@@ -9,11 +9,11 @@ project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Some excellent feature. (you're on fire, @me 🔥)
|
- A tiny but mighty feature. (you're on fire, @me 🔥)
|
||||||
|
|
||||||
### Changed
|
### 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]
|
## [[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 👒)
|
- kubelet_node_labels worker group option allows setting --node-labels= in kubelet. (Hat-tip, @bshelton229 👒)
|
||||||
- `worker_iam_role_arn` added to outputs. Sweet, @hatemosphere 🔥
|
- `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]
|
## [[v1.2.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.1.0...v1.2.0)] - 2018-07-01]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ Generate them like so:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
go get github.com/segmentio/terraform-docs
|
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
|
## 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_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_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.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 | `<list>` | 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 | `<list>` | no |
|
||||||
| kubeconfig_aws_authenticator_command | Command to use to to fetch AWS EKS credentials. | string | `aws-iam-authenticator` | 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 | `<map>` | no |
|
| kubeconfig_aws_authenticator_env_variables | Environment variables that should be used when executing the authenticator. e.g. { AWS_PROFILE = "eks"}. | map | `<map>` | no |
|
||||||
|
|||||||
2
main.tf
2
main.tf
@@ -64,7 +64,7 @@
|
|||||||
|
|
||||||
* ```bash
|
* ```bash
|
||||||
* go get github.com/segmentio/terraform-docs
|
* 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
|
* ## Contributing
|
||||||
|
|||||||
Reference in New Issue
Block a user