Hello, is there a clean way to `Export` (as in sta...
# general
g
Hello, is there a clean way to
Export
(as in stack outputs) structured objects from Pulumi outputs? For instance, let's say I provision a cluster and I have several properties I want to export, for instance (
Go
code):
Copy code
type Cluster struct {
  Name pulumi.StringOutput
  Tags pulumi.StringMapOutput
}
I would like to be able to marshall this struct in the stack output (could be JSON string) and unmarshall that on the caller side (caller is also
Go
using Automation API)