any thoughts on how I can get this to work with no...
# automation-api
i
any thoughts on how I can get this to work with nodejs?
Copy code
pulumi:providers:upstash default_0_1_2_https_/github.com/upstash/pulumi-upstash/releases/download/v__VERSION_  error: Could not automatically download and install resource plugin 'pulumi-resource-upstash' at version v0.1.2, install the plugin using `pulumi plugin install resource upstash v0.1.2 --server <https://github.com/upstash/pulumi-upstash/releases/download/v${VERSION}>`: error downloading provider upstash to file: failed to download plugin: upstash-0.1.2: 404 HTTP error fetching plugin from <https://github.com/upstash/pulumi-upstash/releases/download/v$%7BVERSION%7D/pulumi-resource-upstash-v0.1.2-darwin-arm64.tar.gz>
l
Are you airgapped? You can download that file and unzip it to ~/.pulumi/plugins/resource-upstash-v0.1.2/
Ah, I see the problem. There is no version
%VERSION%
. Download from this URL: https://github.com/upstash/pulumi-upstash/releases/download/v0.1.2/pulumi-resource-upstash-v0.1.2-darwin-amd64.tar.gz
I don't know how that %VERSION% variable is supposed to be populated. It looks like you're not the only one with problems though: https://github.com/upstash/pulumi-upstash/issues/8 https://github.com/upstash/pulumi-upstash/issues/7
One of those includes the workaround:
Copy code
pulumi plugin install resource upstash v0.1.2 --server <https://github.com/upstash/pulumi-upstash/releases/download/v0.1.2>