crooked-wolf-21506
07/01/2021, 2:54 PMstack = new plulumi.StackReference(...);
const resource1 = {
arn: stack.getOutput("resource1Arn"),
name: stack.getOutpu("resource1Name"),
...
}
...
pulumi.Config
can use json structures with types or requireObject, but stack.getOutput
is an any. Can I pass objects and arrays as stack exports and stack.getOuput('resource1') as ResourceExport
?