wonderful-dog-9045
04/23/2020, 12:25 PMOutput
fields:
type Config = {
someValue: Ouput<string>,
otherValue: string,
andSomeMoreValues: Output<object>,
}
Does pulumi private and helper function that that would in this particular case would do:
function helperFunction(config: Config) => Output<{
someValue: string,
otherValue: string,
andSomeMoreValues: string,
}>
so that i don't have to make a messy convolution of .apply()
calls?green-school-95910
04/23/2020, 12:26 PMpulumi.output
or pulumi.all
do exactly thatwonderful-dog-9045
04/23/2020, 12:27 PMpulumi.output(config)
?green-school-95910
04/23/2020, 12:27 PMwonderful-dog-9045
04/23/2020, 12:27 PMpulumi.output(config).apply(...)
. Cool! thanks.