Hello folks, I have been using the pulumi-eks libr...
# golang
t
Hello folks, I have been using the pulumi-eks library to create /manage eks clusters using Typescript as the language. I am exploring switching to Golang, and there seem to be 2 different ways / library flavors: •
<http://github.com/pulumi/pulumi-eks/sdk/go/eks|github.com/pulumi/pulumi-eks/sdk/go/eks>
- this seems to be the more visibly documented version. It is also probably compatible my current typescript-generated stacks •
<http://github.com/pulumi/pulumi-aws/sdk/v4/go/aws/eks|github.com/pulumi/pulumi-aws/sdk/v4/go/aws/eks>
<-- this seems more "modern" in the sense of adoption of / integration with aws/eks features. This is not compatible with my current stacks. It seems like both are currently maintained. Any experience / guidance / gotchas in choosing one over the other?
b
My understanding is the former is the wrapper library that provides higher level abstractions (as component resources). The latter is basically exposing the raw AWS objects and their APIs
👍 2