mumoshu/terraform-provider-eksctl

The provider provider.eksctl does not support resource type "eksctl_cluster_deployment"

Opened this issue · 3 comments

I am getting following error

The provider provider.eksctl does not support resource type "eksctl_cluster_deployment"

I am using following versions

  • Terraform v0.13

  • mumoshu/eksctl v0.13.5

@shridhar-at-droit Ah sorry but the _deployment variant had been deprecated and has already been removed in c7a43e3. Could you use eksctl_cluster instead?

thanks for the update, In my case, cluster is already created usingeksctl command lineand now I just want to add new nodes. Is this possible from eksctl_cluster ? or I need to create new cluster?

@shridhar-at-droit In that case you can either use eksctl_nodegroup added just today, or terraform import your cluster into an eksctl_cluster resource, place your existing cluster.yaml into eksctl_cluster's spec attribute, and add one or more nodegroups inside it.