This message was deleted.
# general
s
This message was deleted.
d
I use the
pulumi_eks
package to deploy eks, and in another stack I am able to get the cluster with:
cluster = aws.eks.get_cluster(cluster_name)
this is from the
pulumi_aws
package
b
But this has type
Output[GetClusterResult]
not
Cluster
.
I think I at least found the reason why
pulumi_aws.eks.Cluster.get()
fails: Pulumi looks for the resource in the current stack. But there is no option to set the stack either - so I'm pretty much back at the start.