numerous-psychiatrist-20856
10/13/2020, 7:34 AMpulumi.Input<KeyValuePair[]>
and also want to add some extra variables to that array, but not sure how to correctly work with the input types to be able to concat two arrays at the endgorgeous-egg-16927
10/13/2020, 4:48 PMconst container: pulumi.Input<KeyValuePair[]> = ...
pulumi.output(container).apply(x => {
return [...x, ...otherArgs];
})
numerous-psychiatrist-20856
10/14/2020, 6:50 AM