v13.1.0
FEATURES:
- Add Launch Template support for Managed Node Groups (#997)
- Add
cloudwatch_log_group_arnto outputs (#1071) - Add kubernetes standard labels to avoid manual mistakes on the managed
aws-authconfigmap (#989)
CI:
- Use ubuntu-latest instead of MacOS for docs checks (#1074)
- Fix GitHub Actions CI macOS build errors (#1065)
BUG FIXES:
- The type of the output
cloudwatch_log_group_nameshould be a string instead of a list of strings (#1061) - Use splat syntax to avoid errors during destroy with an empty state (#1041)
- Fix cycle error during the destroy phase when we change workers order (#1043)
- Set IAM Path for
cluster_elb_sl_role_creationIAM policy (#1045) - Use the amazon
ImageOwnerAliasfor worker ami owner instead of owner id (#1038)
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/for more details. - The output
cloudwatch_log_group_namewas incorrectly returning the log group name as a list of strings. As a workaround, people were usingmodule.eks_cluster.cloudwatch_log_group_name[0]but that was totally inconsistent with output name. Those users can now usemodule.eks_cluster.cloudwatch_log_group_namedirectly. - Keep in mind that changing the order of workers group is a destructive operation. All workers group are destroyed and recreated. If you want to do this safely, you should move then in state with
terraform state mvuntil we manage workers groups as maps.