This message was deleted.
# general
s
This message was deleted.
p
from what I understand, you probably want to use methods like
.apply
that are available in
pulumi.Output
objects
if you need to modify the Pulumi Output, you cannot directly operate on it (as you said,
Output<string[]>
is not
string[]
)
however, you can transform it within function passed to
apply
method
l
This joins an Outout<string[]> to a string[]:
Copy code
outputStringArray = outputStringArray.apply(oa => oa.concat(stringArray));
s
thanks @little-cartoon-10569
👍 1