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

gorgeous-accountant-60580

10/04/2022, 8:01 AM
I’m trying to find out where plugins are downloaded from, but I haven’t had any luck yet. How can I construct the URL for a plugin, so that I can download it without using the CLI?
e

echoing-dinner-19531

10/04/2022, 9:07 AM
They are mostly downloaded from github releases
If you run
pulumi plugin install
with
-v10  --logtostderr
I think it prints the url at some point
But in general we query https://github.com/repos/<org>/<plugin>/releases/tags/v<version> and then download "pulumi-<kind>-<name>-v<version>-<os>-<arch>.tar.gz"
g

gorgeous-accountant-60580

10/04/2022, 9:12 AM
Thanks, Fraser!