I’m trying to find out where plugins are downloade...
# general
g
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
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
Thanks, Fraser!