Also, what is the recommended way to extend an exi...
# general
b
Also, what is the recommended way to extend an existing Provider with our own Dynamic Provider ? My use-case here is that I'm trying to implement AWS Pinpoint Journeys, and the Pinpoint provider doesn't have them in Terraform... but the Python SDK
boto3
definitely has them ! I kinda wonder how I can interact with the
pulumi_aws.Provider
instance to share credentials and stuff : should I declare it as a dependency of my
dynamic.Resource
? If so, what should be the link between the
pulumi_aws.Provider
and my
dynamic.Provider
? We've achieved some working examples with my team but I'm not quite satisfied with it : most of the time we ended up with unstable stacks and locked states (had to
pulumi stack export/import
)