Hi, is it possible to use different provider versi...
# general
a
Hi, is it possible to use different provider versions for different resources?
b
Yup, just set up your opts:
Copy code
res = some.Resource(
    ...
    opts=pulumi.ResourceOptions(
        provider=some.Provider(...),
    )
)
a
Yes, I use that extensively, but how do I specify the version of the provider being used?
Answering my own question with Python, all we need to do is specify the version as a resource option when creating the provider:
Copy code
pulumi_aws.Provider(
    ...
    opts=pulumi.ResourceOptions(version=<version>))
❤️ 1