Hi all, I am new to Pulumi. I used Java to deploy ...
# aws
g
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
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.