You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- made progress on CI, advancing the build to the final `kitchen test` stage before failing.
20
+
8
21
## [v0.1.0] - 2018-06-07
9
22
10
23
### Added
11
24
12
25
- Everything! Initial release of the module.
13
-
- Kudos to @tanmng for finding and fixing bug #1.
26
+
-added a local variable to do a lookup against for a dynamic value in userdata which was previously static. Kudos to @tanmng for finding and fixing bug #1!
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,15 +89,15 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
89
89
| Name | Description | Type | Default | Required |
90
90
|------|-------------|:----:|:-----:|:-----:|
91
91
| cluster_ingress_cidrs | The CIDRs from which we can execute kubectl commands. | list | - | yes |
92
-
| cluster_name | Name of the EKS cluster. | string | - | yes |
92
+
| cluster_name | Name of the EKS cluster which is also used as a prefix in names of related resources. | string | - | yes |
93
93
| cluster_version | Kubernetes version to use for the cluster. | string | `1.10` | no |
94
94
| subnets | A list of subnets to associate with the cluster's underlying instances. | list | - | yes |
95
-
| tags | A map of tags to add to all resources | string |`<map>`| no |
95
+
| tags | A map of tags to add to all resources.| string |`<map>`| no |
96
96
| vpc_id | VPC id where the cluster and other resources will be deployed. | string | - | yes |
97
-
| workers_ami_id | AMI ID for the eks workers. | string |-|yes|
98
-
| workers_asg_desired_capacity |description| string |`1`| no |
99
-
| workers_asg_max_size |description| string |`3`| no |
100
-
| workers_asg_min_size |description| string |`1`| no |
97
+
| workers_ami_id | AMI ID for the eks workers. If none is provided, Terraform will search for the latest version of their EKS optimized worker AMI. | string |``|no|
98
+
| workers_asg_desired_capacity |Desired worker capacity in the autoscaling group.| string |`1`| no |
99
+
| workers_asg_max_size |Maximum worker capacity in the autoscaling group.| string |`3`| no |
100
+
| workers_asg_min_size |Minimum worker capacity in the autoscaling group.| string |`1`| no |
101
101
| workers_instance_type | Size of the workers instances. | string |`m4.large`| no |
0 commit comments