This message was deleted.
# general
s
This message was deleted.
v
could you share the code for the component which is outputting the map?
g
Copy code
func(subnets map[string]*ec2.Subnet) pulumi.MapOutput {
		subnetOutputs := make(map[string]pulumi.Output)
		for k, v := range subnets {
			subnetOutputs[k] = v.ID()
		}
		return pulumi.ToMapOutput(subnetOutputs)
I cannot share the whole component, but I can successfully print these values inside of an applyT of the consuming component
v
ah is this in go? sorry i use the TS implementation, not too au fait with go