This message was deleted.
# typescript
s
This message was deleted.
l
Is it not feasible to move the getUrl logic into the previous
map
, which is currently returning storage.Blobs? And instead return URLs there?
(Also: large chunks of code like this benefit from the Slack Text Snippet format)
But in general: you may want
reduce
instead of
map
, so that you're creating a single
Output<string[]>
that you're amending, instead of an
Output<Output<string[]>>
that is returned from
pulumi.all()
.
a
thanks for the pointers! (and about text snippet - I didn't know about that, sorry)