Can an output of a `pulumi.dynamic.Resource` be a ...
# general
f
Can an output of a
pulumi.dynamic.Resource
be a function?
w
What do you mean by "an output" in this context?
f
Something like this:
Copy code
const myResource = new MyResource("my-resource");

const derivedOutput = myResource.derivedOutput("foo");
where
derivedOutput
returns an
Output
calculated from the `Output`s of
MyResource
. Writing it out like that makes me think that that should work.
Wait, how do you get the
outs
from a
ResourceProvider
?