https://pulumi.com logo
Title
g

gorgeous-eve-39553

01/23/2023, 3:11 PM
Hi all, I am new to Pulumi. I used Java to deploy an EKS cluster. After some problems using a class from the wrong package, I found that there are two distinct packages:
com.pulumi.aws.eks
and
com.pulumi.eks
. What is the difference between the two? Is there some article that explains it?
m

melodic-tomato-39005

01/25/2023, 5:33 PM
Hi @gorgeous-eve-39553,
aws.eks
is from the pulumi AWS Classic provider which exposes all of AWS.
eks
is from this, a component for EKS, i.e., a higher-level abstraction.
eks
gets you started faster and reduces code,
aws.eks
gives you full control.