https://pulumi.com logo
Title
p

proud-artist-4864

03/20/2019, 3:10 AM
Really need this in python, or a mechanism for including user provided code into the async loop so that it can access Outputs in the same way.
w

white-balloon-205

03/20/2019, 3:12 AM
Note that the same feature was actually already available in Python. You can reference properties of an Output value directly as
res.something.value
. This new feature in JavaScript brings the JavaScript and Python experiences closer together.
i

incalculable-sundown-82514

03/20/2019, 9:55 PM
You can also use
pulumi.Output.from_input
to turn a
Future
into an
Output
, so that you get the goodness in this blog post without having to write
async def
functions