https://pulumi.com logo
g

gray-city-50684

10/04/2018, 3:11 PM
One more 🙂 I know there is a method called “apply” on pulumi.Output objects. Is there something similar for pulumi.Input?
w

white-balloon-205

10/04/2018, 3:13 PM
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

gray-city-50684

10/04/2018, 3:14 PM
yes, I meant if there is a utility method somewhere
I’ll try this one thanks