Really need this in python, or a mechanism for inc...
# announcements
p
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
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
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