This message was deleted.
# general
s
This message was deleted.
l
You can use
pulumi.all()
, which is the most generic way, but also very verbose. If you're just looking to create an
Output<string>
from other `Output<string>`s, then
pulumi.interpolate
is the sugar on top, to make it more readable.
c
I decided to re-read the documentation. What I was missing was the
Output.Tuple<...>
which allows for various data types; which is effectively what I needed. Thanks!
👍 1