```Diagnostics: pulumi:providers:aws (default): ...
# install
g
Copy code
Diagnostics:
  pulumi:providers:aws (default):
    error: no resource plugin 'aws-v0.16.3-dev.1542649495' found in the workspace or on your $PATH, install the plugin using `pulumi plugin install resource aws v0.16.3-dev.1542649495`

error: an error occurred while advancing the preview
[root@e58994d38ac1 pulumi]# pulumi plugin install resource aws v0.16.3-dev.1542649495
[resource plugin aws-0.16.3-dev.1542649495] installing
error: [resource plugin aws-0.16.3-dev.1542649495] downloading from <https://api.pulumi.com>: failed to download plugin: [404] 404 page not found
b
Hi @gentle-notebook-84651! I'm working on fixing this up. I did want to note that it looks like we have a bug in the template and we are currently requesting our nightly built bits instead of the last stable release. You probably also want to edit the
package.json
in
ahoy-pulumi
to use the
latest
tag instead of
dev
for the dependencies. e.g:
Copy code
{
  "name": "hello-aws-javascript",
  "main": "index.js",
  "dependencies": {
    "@pulumi/pulumi": "latest",
    "@pulumi/aws": "latest"
  }
}
If you do that, then re-run
npm install
(or
yarn install
, if you are using yarn), you should get unblocked as well.
You should also now be able to run
pulumi plugin install resource aws v0.16.3-dev.1542649495
and have it work. Sorry for the trouble.
I also opened an merged a PR https://github.com/pulumi/templates/pull/44 to fix the template so it is using the latest released versions instead of the nightly builds. Sorry for the trouble.
g
looks good
Copy code
pulumi plugin install resource aws v0.16.3-dev.1542649495
[resource plugin aws-0.16.3-dev.1542649495] installing
Downloading plugin:  36.05 MiB / 36.05 MiB [========================] 100.00% 2s
thanks!