This message was deleted.
# general
s
This message was deleted.
f
can use concat or flat in an output.all ?
s
I don't think there is an all on output, but I can try
p
I think you should be able to do that using pulumi functions that operate on outputs
just as Adrew said,
output.all
should do the trick
(I don’t know how it’s called in TS but there must be a counterpart in every language pulumi supports)
based on the docs:
Copy code
let flat = pulumi.all([foo, bar]).apply(([foo, bar]) => [...foo, ...bar]);
s
oh i see!
going to give it a go
It worked! Thank you so much
👍 1
🙌 1