Sorry if I missed something, but I just tried to u...
# general
b
Sorry if I missed something, but I just tried to upgrade the pulumi-eks library to version 1.0.0 (python code). And I get the following error :
Copy code
Exception: Invoke: Default provider for 'aws' disabled. 'aws:index/getPartition:getPartition' must use an explicit provider.
If I downgrade the lib to my previous version, it works again
a
That sounds like a bug. Do you know what eks resource is triggering this?
b
I think it is the cluster component
I removed everything except the cluster, and the error is still here
a
Thats totally a bug. I’ll open an issue for pulumi-eks
b
Ok ! If you want I can create a fresh dummy project to check if the problem is easily reproducible. And then create the issue accordingly
a
I reprod the issue with
Copy code
from pulumi import ResourceOptions
from pulumi_eks import Cluster
from pulumi_aws import Provider

provider = Provider("aws", region="us-west-2")
Cluster("hi", ResourceOptions(providers=[provider]))
I think we can safely say its easily reproducible 😄
b
Ok, that’s definitely easy to reproduce 🙂
a
If you want to file an issue, that would be great! (otherwise I can do it 😄)
b
Yes I can do it, once done I will send the link here