This message was deleted.
# general
s
This message was deleted.
g
It is configured on the required dependencies of the language you are using
In Ts for example, if the package.json has
"@pulumi/aws": "^v3.2.0"
when you installed your dependencies the package.lock might contain v3.2.1, which is compatible
l
You might also find you need two different versions of the same provider plugin if you're using multiple non-default providers, and they were created at different times. I was dependent on two versions of the aws plugin because I had 1 stack that deployed to different accounts using different credentials.
m
I see… where might i find the versions that my modules use if I’m using Python?
i would prefer to pin the versions i use if it all possible
ah, sorry, i had misunderstood your comment, Luiz. I think I can pin the version in my
requirements.txt
in python. thanks all!