stale-vase-87890
03/24/2022, 7:00 PM[ 'bar', 'cat'] and one called bar: ['abc,' '123]. that I would like to make into flat: ['bar", "cat", "abc", "123"]
freezing-van-87649
03/24/2022, 7:05 PMstale-vase-87890
03/24/2022, 7:20 PMprehistoric-activity-61023
03/24/2022, 7:21 PMoutput.all
should do the tricklet flat = pulumi.all([foo, bar]).apply(([foo, bar]) => [...foo, ...bar]);
stale-vase-87890
03/24/2022, 7:24 PM