is this doc out of date? <https://www.pulumi.com/d...
# general
d
l
Can you clarify your expectations? Do you want the provider opt to be available as a property on the class?
d
yes only because thats what it looked like it was a output of in document
Copy code
// Create an EKS cluster with the default configuration.
const cluster = new eks.Cluster("my-cluster");

// skipping like 15 lines of code
       }
    },
}, { provider: cluster.provider });
l
In that case, provider is an opt, not an arg. It's a member of the object passed in as the 3rd parameter, not the 2nd parameter. provider is not a member of eks.Cluster, it's a member of ResourceOptions.
The documentation is correct.