salmon-account-74572
07/01/2020, 8:19 PMPulumi.Map
to create maps for assigning AWS tags is broken. Sample code is threaded below.Tags: pulumi.Map{
"Name": pulumi.String(fmt.Sprintf("%s-priv-rt", baseName)),
k8sTag: pulumi.String("shared"),
},
This worked with version 2.4.0 of the Pulumi SDK, but using the latest commit causes this error to appear when running `pulumi up`:
./main.go:139:4: cannot use pulumi.Map literal (type pulumi.Map) as type pulumi.StringMapInput in field value:
pulumi.Map does not implement pulumi.StringMapInput (missing ToStringMapOutput method)
Is this a bug with the SDK, or am I doing something wrong? (I'd be inclined to think it was the latter if it hadn't worked earlier.)lemon-agent-27707
07/01/2020, 8:27 PMpulumi.StringMap
salmon-account-74572
07/01/2020, 8:33 PMpulumi up
works.lemon-agent-27707
07/01/2020, 8:34 PMsalmon-account-74572
07/01/2020, 8:51 PM$GOPATH/bin
was included in $PATH
fixed the "errors" in VS Code