Hi, is anyone here using golang workspaces to work...
# golang
l
Hi, is anyone here using golang workspaces to work with external modules locally? When I configure a Pulumi project to use an "external" module (containing Pulumi components) I get the following error when running a
pulumi preview
e
We use workspaces a lot, but somehow you look like you've got the pulumi sdk code included into the project at two different versions.
l
yeah, that thought crossed my mind as well. Thanks for the pointer, I'm going to have a look
as you said @echoing-dinner-19531. I had the following imported
<http://github.com/pulumi/pulumi/sdk/go/pulumi/config|github.com/pulumi/pulumi/sdk/go/pulumi/config>
which has a conflict with
<http://github.com/pulumi/pulumi/sdk/v3/go/pulumi|github.com/pulumi/pulumi/sdk/v3/go/pulumi>
it is working now. Thanks!
e
Nice, glad that pointer helped