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
Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -160,6 +160,8 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
160
160
| kubernetes | >= 1.11.1 |
161
161
| local | >= 1.4 |
162
162
| null | >= 2.1 |
163
+
| random | >= 2.1 |
164
+
| template | >= 2.1 |
163
165
164
166
## Inputs
165
167
@@ -220,6 +222,8 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
220
222
| worker\_create\_initial\_lifecycle\_hooks | Whether to create initial lifecycle hooks provided in worker groups. |`bool`|`false`| no |
221
223
| worker\_create\_security\_group | Whether to create a security group for the workers or attach the workers to `worker_security_group_id`. |`bool`|`true`| no |
222
224
| worker\_groups | A map of maps defining worker group configurations to be defined using AWS Launch Templates. See workers\_group\_defaults for valid keys. |`any`|`{}`| no |
225
+
| worker\_groups\_launch\_template\_legacy | A list of maps defining worker group configurations to be defined using AWS Launch Templates. See workers\_group\_defaults for valid keys. |`any`|`[]`| no |
226
+
| worker\_groups\_legacy | A list of maps defining worker group configurations to be defined using AWS Launch Configurations. See workers\_group\_defaults for valid keys. |`any`|`[]`| no |
223
227
| worker\_security\_group\_id | If provided, all workers will be attached to this security group. If not given, a security group will be created with necessary ingress/egress to work with the EKS cluster. |`string`|`""`| no |
224
228
| worker\_sg\_ingress\_from\_port | Minimum port number from which pods will accept communication. Must be changed to a lower value if some pods in your cluster will expose a port lower than 1025 (e.g. 22, 80, or 443). |`number`|`1025`| no |
225
229
| workers\_additional\_policies | Additional policies to be added to workers |`list(string)`|`[]`| no |
@@ -256,6 +260,15 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
256
260
| worker\_groups | Outputs from EKS worker groups. Map of maps, keyed by var.worker\_groups keys |
257
261
| worker\_iam\_instance\_profile\_arns | default IAM instance profile ARN for EKS worker groups |
258
262
| worker\_iam\_instance\_profile\_names | default IAM instance profile name for EKS worker groups |
263
+
| worker\_iam\_role\_arn | default IAM role ARN for EKS worker groups |
264
+
| worker\_iam\_role\_name | default IAM role name for EKS worker groups |
259
265
| worker\_security\_group\_id | Security group ID attached to the EKS workers. |
266
+
| workers\_asg\_arns | IDs of the autoscaling groups containing workers. |
267
+
| workers\_asg\_names | Names of the autoscaling groups containing workers. |
268
+
| workers\_default\_ami\_id | ID of the default worker group AMI |
269
+
| workers\_launch\_template\_arns | ARNs of the worker launch templates. |
270
+
| workers\_launch\_template\_ids | IDs of the worker launch templates. |
271
+
| workers\_launch\_template\_latest\_versions | Latest versions of the worker launch templates. |
272
+
| workers\_user\_data | User data of worker groups |
0 commit comments