This message was deleted.
# typescript
s
This message was deleted.
g
You can do the concatenation inside an apply — something like this should work:
Copy code
const container: pulumi.Input<KeyValuePair[]> = ...
pulumi.output(container).apply(x => {
    return [...x, ...otherArgs];
})
n
thanks Ievi, I will give that a go 🙂