One more :slightly_smiling_face: I know there is a...
# general
g
One more 🙂 I know there is a method called “apply” on pulumi.Output objects. Is there something similar for pulumi.Input?
w
An Input is just an alias for
T | Output<T>
so there are no methods on it. You can convert an Input to an Output and use
apply
on that with
pulumi.output(input).apply()
.
g
yes, I meant if there is a utility method somewhere
I’ll try this one thanks