https://pulumi.com logo
#general
Title
# general
c

colossal-vr-62639

07/28/2022, 6:46 AM
I am trying to install a pulumi resource provider from a file but it seems that regardless of what I do, it's not accepting the file via the
file
parameter. e.g.
Copy code
pulumi plugin install resource sample-resource-provider --file sample-resource-provider.tar.gz

error: 404 HTTP error fetching plugin from <https://api.github.com/repos/pgermishuys/sample-resource-provider/releases/latest>. If this is a private GitHub repository, try providing a token via the GITHUB_TOKEN environment variable. See: <https://github.com/settings/tokens>
e

echoing-dinner-19531

07/28/2022, 7:37 AM
try adding a version to that
Copy code
pulumi plugin install resource sample-resource-provider 1.0.0 --file sample-resource-provider.tar.gz
We should give a better error message here, I'll fix that up today for the next release
👍 1
c

colossal-vr-62639

07/28/2022, 7:57 AM
Thanks Fraser!
e

echoing-dinner-19531

07/28/2022, 8:21 AM
https://github.com/pulumi/pulumi/pull/10271 will be fixed for the next release
2 Views