This message was deleted.
# general
s
This message was deleted.
b
What am I missing?
b
in your
main.go
do do you have an import that isn't versioned? can you share the imports in your Go file?
b
Copy code
import (
	"<http://github.com/pulumi/pulumi-gcp/sdk/go/gcp/projects|github.com/pulumi/pulumi-gcp/sdk/go/gcp/projects>"
	"<http://github.com/pulumi/pulumi-gcp/sdk/v4/go/gcp/container|github.com/pulumi/pulumi-gcp/sdk/v4/go/gcp/container>"
	appsv1 "<http://github.com/pulumi/pulumi-kubernetes/sdk/v2/go/kubernetes/apps/v1|github.com/pulumi/pulumi-kubernetes/sdk/v2/go/kubernetes/apps/v1>"
	corev1 "<http://github.com/pulumi/pulumi-kubernetes/sdk/v2/go/kubernetes/core/v1|github.com/pulumi/pulumi-kubernetes/sdk/v2/go/kubernetes/core/v1>"
	metav1 "<http://github.com/pulumi/pulumi-kubernetes/sdk/v2/go/kubernetes/meta/v1|github.com/pulumi/pulumi-kubernetes/sdk/v2/go/kubernetes/meta/v1>"
	"<http://github.com/pulumi/pulumi-kubernetes/sdk/v2/go/kubernetes/providers|github.com/pulumi/pulumi-kubernetes/sdk/v2/go/kubernetes/providers>"
	"<http://github.com/pulumi/pulumi/sdk/v2/go/pulumi|github.com/pulumi/pulumi/sdk/v2/go/pulumi>"
)
b
this import is wrong:
Copy code
"<http://github.com/pulumi/pulumi-gcp/sdk/go/gcp/projects|github.com/pulumi/pulumi-gcp/sdk/go/gcp/projects>"
should be
Copy code
"<http://github.com/pulumi/pulumi-gcp/sdk/v4/go/gcp/projects|github.com/pulumi/pulumi-gcp/sdk/v4/go/gcp/projects>"
looks like your IDE auto imported it, perhaps