This message was deleted.
# general
s
This message was deleted.
l
Since they're in the same project and stack, there's nothing special needed. Resources are just objects in your chosen language, pass them just like other object parameters.
a
@little-cartoon-10569 This function is in another project called UpgradeEks ... and my EKS was created previously , I want to do this
Copy code
function updateVersion(eks:aws.eks.Cluster){
    eks.version = "1.17";
      .....
}
l
There is no "update" action in Pulumi. It's a desired state configuration system. You change your code to describe the resource (in the resource's constructor), and Pulumi makes it happen.
Conditionally changing a resource is possible (construct it in branches of a conditional), but strongly discouraged.
a
@little-cartoon-10569 ok! Thank you for your help
👍 1