damp-accountant-65956
10/04/2021, 1:24 AMerror: program failed: waiting for RPCs: rpc error: code = Unknown desc = marshaling properties: awaiting input property vpc: cannot marshal an input of type pulumi.StringOutput with element type string as a value of type pulumi.StringOutput
If I flatten it out into a single struct, though, it works fine...
3. do I have to call ctx.RegisterResourceOutputs
to register outputs at the end? it doesn't seem to have any effect if I comment it out. Or is that used for other languages like NodeJS and .NET?
Feel free to DM me or at least tag me so I see any replies... and TIA!!billowy-army-68599
10/04/2021, 1:31 AMctx.RegisterOutputs
will tell your component that all outputs have resolved for the UI, but may be used more in the future. See the answer here: https://github.com/pulumi/pulumi/issues/2653#issuecomment-484956028damp-accountant-65956
10/04/2021, 12:09 PM