This message was deleted.
# general
s
This message was deleted.
h
You could convert the Inputs to Outputs. https://pulumi.io/reference/programming-model/#frominput
w
You can also do
pulumi.output(obj).apply(o => ...)
which will deeply resolve any values which are
Outputs
inside
obj
and hand back a fully resolved object.
f
Oh, sweet!
This doesn't appear to work for something that has a type like this:
pulumi.Input<pulumi.Input<string>[]>
h
Convert it to an output then perform the
.apply()
method like Luke said