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
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.
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