Hi, I got the error of `no resource plugin 'pulumi...
# general
d
Hi, I got the error of
no resource plugin 'pulumi-nodejs' found in the workspace or on your $PATH
on my new linux worker, I thought I saw the error before but not sure I fixed it. Any ideas?
w
You should have a binary
pulumi-resource-pulumi-nodejs
sitting next to your
pulumi
binary. Is that there in your current configuration? That binary will need to be present in order to use "dynamic providers". It is installed as part of the default Pulumi installer/zip.
d
I did pulumi install via command
curl -L <https://get.pulumi.com/> | bash -s
how do I check if the config’s there?
w
which pulumi
which pulumi-resource-pulumi-nodejs
What path do each of those return for you?
d
Copy code
[root@ip-10-178-29-149 ~]# which pulumi-resource-pulumi-nodejs
/root/.pulumi/bin/pulumi-resource-pulumi-nodejs
[root@ip-10-178-29-149 ~]# which pulumi
/usr/bin/pulumi
Okay I need to set that to path I guess
w
I don't think we install anything to
/usr/bin
- how did you get that one?
But yes - if you want to use the installation in
~/.pulumi/bin
then add that to your PATH. That is where the default installer installs things (the
curl
command above should tell you that as part of it's output).
d
because I added the symlink to it
w
Ahh - I see. Yes - there are additional binaries that must also be on your
PATH
(everything in
~/.pulumi/bin
).