alert-spoon-97538
05/16/2022, 6:18 AMget
, apply
, or anything I try I can't get the outputs of one stack to do anything relevant on another. Side note, I'm having a hard time understanding why the Type of an output pulled from a StackRef is treated the same as the unresolved outputs in the working stack. The StackRef stack by definition has been applied, all of those output values are known, otherwise Pulumi rightly throws an error.other_stack
)`
const vpcId: Input<string> = networking.requireOutputValue("vpcId") as Input<string>
`const vpc = awsx.ec2.Vpc.fromExistingIds(cluster-vpc
, {vpcId: vpcId})`victorious-church-57397
05/16/2022, 7:45 AMrequireOuput
?billowy-army-68599
alert-spoon-97538
05/16/2022, 4:17 PMrequireOutput
now is working for me though I swear I tried that previously. I think part of the problems I'm running into are related to Crosswalk vs Classic AWS. ECS Crosswalk for instance won't take just a vpcId for the vpc like some of the classic options and I couldn't get it to work by hydrating the vpc from non-crosswalk examples I saw either.