mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-22 09:29:06 +01:00
feat: Add Launch Template support for Managed Node Groups (#997)
NOTES: Managed Node Groups now support Launch Templates. The Launch Template it self is not managed by this module, so you have to create it by your self and pass it's id to this module. See docs and [`examples/launch_templates_with_managed_node_groups/`](https://github.com/terraform-aws-modules/terraform-aws-eks/tree/master/examples/launch_templates_with_managed_node_group) for more details.
This commit is contained in:
@@ -26,6 +26,8 @@ The role ARN specified in `var.default_iam_role_arn` will be used by default. In
|
||||
| instance\_type | Workers' instance type | string | `var.workers_group_defaults[instance_type]` |
|
||||
| k8s\_labels | Kubernetes labels | map(string) | No labels applied |
|
||||
| key\_name | Key name for workers. Set to empty string to disable remote access | string | `var.workers_group_defaults[key_name]` |
|
||||
| launch_template_id | The id of a aws_launch_template to use | string | No LT used |
|
||||
| launch\_template_version | The version of the LT to use | string | none |
|
||||
| max\_capacity | Max number of workers | number | `var.workers_group_defaults[asg_max_size]` |
|
||||
| min\_capacity | Min number of workers | number | `var.workers_group_defaults[asg_min_size]` |
|
||||
| name | Name of the node group | string | Auto generated |
|
||||
|
||||
Reference in New Issue
Block a user