Hi, I have a pulumi project that I pulled down fro...
# general
l
Hi, I have a pulumi project that I pulled down from source control that was created by a teammate. It requires the AWS plugin, but I don't have that installed. It seems that it got installed for my teammate when he ran
pulumi new aws-python
. So now I want to install it via
pulumi plugin install resource aws VERSION
, but I cannot find any way to determine what the legal values of VERSION are... anyone able to point me in the right direction?
maybe it's this? https://github.com/pulumi/pulumi-aws/blob/master/CHANGELOG.md . docs/cli help command don't make it very clear though 😕
I installed v1.28.0 because it was the most recent version there, but then when I tried to run
pulumi up
, it complained about needing v1.27. I can't find out where it is getting that from, I don't see any references to 1.27 in any of the files in the project directory nor in
~/.pulumi
.
Removing v1.28 and installing v1.27 fixed it but it would be really helpful to know how a user is supposed to determine what version is required...