I see an issue trying to install the Command modul...
# general
b
I see an issue trying to install the Command module:
Copy code
$ pulumi plugin install resource command v3.0.0
[resource plugin command-3.0.0] installing
error: [resource plugin command-3.0.0] downloading from : 403 HTTP error fetching plugin from <https://get.pulumi.com/releases/plugins/pulumi-resource-command-v3.0.0-darwin-amd64.tar.gz>
I ran this because I got:
Copy code
pulumi:providers:command (default):
    error: no resource plugin 'command-v3.0.0' found in the workspace or on your $PATH, install the plugin using `pulumi plugin install resource command v3.0.0`
Copy code
"<http://github.com/pulumi/pulumi-command/sdk/v3/go/command/local|github.com/pulumi/pulumi-command/sdk/v3/go/command/local>"
This import (from the GitHub repo examples) seems to break it. Removing the
v3/
aspect fixed it.
s
I think you want
pulumi plugin install resource command v0.0.3
b
@sparse-park-68967 I tried it and it installed, but running
pulumi up
still gave that error (that command-v3.0.0 is not installed) unless I changed the import path.
s
Also - the go import should be `
Copy code
<http://github.com/pulumi/pulumi-command/sdk/go/command/local|github.com/pulumi/pulumi-command/sdk/go/command/local>
no
sdk/v3
what is in your go.mod?
b
Yes, I just copied it from the example in the
pulumi-command
repo 🙂
Fixing that important (which is what I noted above) resolved the issue.
s
yeah I just saw that. That is a bug.
b
Now there’s a separate issue as I mentioned here: https://pulumi-community.slack.com/archives/C84L4E3N1/p1643048823205900
s
I will reply there!
If you are up for it, happy to take a quick PR on fixing the README!
b