bored-barista-23480
11/09/2021, 11:45 AMException: 'dependsOn' was passed a value that was not a Resource.
, but I don't explicitly set the dependsOn
parameter. I boiled it down to one specific parameter creating the problem. I create an EKS cluster in my first project, export cluster.core
, import it in my second project and use it as the cluster
input to a ManagedNodeGroup
. Currently it's the only resource created in the second project and every other input is given explicitly (= not as an Output
type). Does any one have a clue where the error could originate or even how to solve it?little-cartoon-10569
11/09/2021, 7:10 PMget()
the resource in the other project.get()
is a real Pulumi resource (though, read only).bored-barista-23480
11/10/2021, 2:24 PMget()
function do you mean exactly? I only found aws.eks.get_cluster()
but that does not give me the full resource (specifically the core
attribute is missing). But I also don't want to import the resource to be managed by the second project.