bright-orange-69401
03/28/2023, 2:28 PMparent
without triggering a replacement, but in a way that can be versioned in Git and automatically deployed ?
(I used to pulumi stack export
, manually edit then pulumi stack import
but I wonder if there’s a cleaner way to do this)limited-rainbow-51650
03/28/2023, 2:42 PMaliases
. Here is a blog article I once wrote before I joined Pulumi: https://www.pulumi.com/blog/cumundi-guest-post/bright-orange-69401
03/28/2023, 3:51 PMaliases
until now... but it sounds mighty useful
Do you know if that can also be applied when altering the provider
of a given resource ?
(I’m using multiple providers in pulumi-snowflake
because of different roles)limited-rainbow-51650
03/29/2023, 7:26 AMurn
of the default provider. Here is a code snippet in TS showing a similar scenario going from the default AWS provider to an explicit one:
https://github.com/pulumi/pulumi/issues/8959#issuecomment-1461297086
So, you don't alias it on the resource itself, but you do it on the attached provider.