fix autoscaling taint labels syntax @xeivieni (#87)
what
Use taints key and value as tags instead of array indices and object.
why
Fixes the following error when trying to use both autoscaler and taints :
Error: Incorrect attribute value type
on .terraform/modules/eks_node_group/launch-template.tf line 105, in resource "aws_launch_template" "default":
105: tags = local.node_group_tags
|----------------
| local.node_group_tags is object with 7 attributes
Inappropriate value for attribute "tags": element
"k8s.io/cluster-autoscaler/node-template/taint/0": string required.
references
- Link to any supporting github issues or helpful documentation to add some context (e.g. stackoverflow).
- Use
closes #86