This message was deleted.
# general
s
This message was deleted.
l
you will need to do the serialization from within Apply: https://www.pulumi.com/docs/intro/concepts/programming-model/#apply Since you need to wait for multiple outputs, you'll need to use
.All(...).Apply(...)
Pulumi Outputs are kind of like javascript promises (they are implemented with python futures)
You can't access the raw value of the output unless you call
.Apply
on it.