Hi I am deploying EKS cluster using pulumi . I see...
# golang
l
Hi I am deploying EKS cluster using pulumi . I see there are different Go SDK I can use to deploy cluster .
Copy code
<http://github.com/pulumi/pulumi-aws/sdk/v4/go/aws/eks|github.com/pulumi/pulumi-aws/sdk/v4/go/aws/eks>
or
Copy code
"<http://github.com/pulumi/pulumi-eks/sdk/go/eks|github.com/pulumi/pulumi-eks/sdk/go/eks>"
Just wondering which SDK should i use for EKS cluster provisioning ?
q
pulumi-eks
is our abstraction on
aws
EKS objects, which is a lot simpler to work with
Start with pulumi-eks and fall back to a more manual build if needed
l
Thanks