8

I am trying to use https://registry.terraform.io/modules/terraform-aws-modules/eks/aws/12.2.0(Terraform AWS EKS provider)

What is the difference between worker nodes and node group?

1 Answers1

11

The difference is that node_groups are Amazon EKS managed nodes and worker_groups are self managed nodes.

Check this Github issue for more details.

acid_fuji
  • 593