hey, is there a way to install latest plugins? lik...
# install
d
hey, is there a way to install latest plugins? like
pulumi plugin install aws latest
this does not work? also is there a programmable way to get versions?
w
There is not currently a
latest
are to
plugin install
. In general, you should not need/want to manage plugins manually - the correct version corresponding to the SDK you are using will be acquired automatically for you. In general, using
latest
can be "incorrect" as it may not match the SDK version you are using. Curious what your scenario is where you are finding you want to run
pulumi plugin install
?
also is there a programmable way to get versions?
The versioning is designed to be primarily via the SDK package managers - so you could use their APIs to list available versions or resolve semver ranges.
d
so I want to create an image with all the latest components that will run the ci to test if the code will work
it pita now, and I don’t want plugin download during runtime
so some api would be nice to list plugin versions
what if the ci box does not have access to the internet?