Hey everyone, I'm going to use pulumi to create an...
# aws
a
Hey everyone, I'm going to use pulumi to create an EKS cluster and I want to use the AWS-provided add-ons (because why not?) Using pulumi eks plugin I can only disable the default add-ons and not manage it: https://www.pulumi.com/registry/packages/eks/api-docs/cluster/ Using pulumi aws classic (or native) plugin I can create and manage add-ons but the features for creating the cluster itself are very limited: https://www.pulumi.com/registry/packages/aws/api-docs/eks/addon/ What should I use? Can I use a mix of both?
b
You can mix and match the providers, so using both is valid. Just pass the cluster name correctly and it should work
a
Thanks 🙏