I’m trying to use Pulumi under Windows 11. After having set up the project I try to run pulumi up
but I get this error
error: Could not automatically download and install resource plugin 'pulumi-resource-koyeb' at version v0.1.11, install the plugin using
pulumi plugin install resource koyeb v0.1.11: error downloading provider koyeb to file: failed to download plugin: koyeb-0.1.11: 403 HTTP error fetching plugin from https://get.pulumi.com/releases/plugins/pulumi-resource-koyeb-v0.1.11-windows-amd64.tar.gz
Thanks in advance.
Franco
Pulumi is trying to install a plugin that no longer exists, which is why you’re seeing the 403 error. Unfortunately, this seems to be due to the plugin not being available for Windows in that version. One workaround I can suggest is switching to WSL (Windows Subsystem for Linux), where the plugin may still be supported.
If the plugin is being used directly in your code and isn’t maintained anymore, you might need to look into alternatives or see if a different version of the plugin works.
Hi @Bjarnos , first of all thank you for your answer.
The plugin here is pulumi-resource-koyeb
. What is it? I mean, I already run pip install pulumi_koyeb
, what is this plugin? Where could I find infos about it?
Thank you very much.
Franco
The pulumi-resource-koyeb
plugin is used internally by Pulumi to actually deploy and manage Koyeb resources. Even though you’ve installed the Python SDK (pulumi_koyeb
), the CLI still needs this plugin to communicate with Koyeb’s API when you run pulumi up
.
You can find more details on the official package page: Koyeb | Pulumi Registry
Possible fixes:
- Try using WSL (Windows Subsystem for Linux), as the plugin might be available for Linux even if it’s missing for Windows.
- Try a different plugin version (if you have control over which version is used, I haven’t worked with Pulumi much myself
).
Your answer pointed me to the solution:
pulumi plugin install resource koyeb v0.1.11 --server https://github.com/koyeb/pulumi-koyeb/releases/download/v0.1.11
Maybe docs related to Pulumi provider could be updated with that?
Thank you!
Franco
1 Like
I’m not an admin, so I can’t help with the docs, but I’m glad I could help with the error!
Also, marking a message as Solution helps everyone find answers faster.
1 Like
Thanks! I’ll look into Pulumi when I have time, I never used it before 