Hello everyone! I have a question regarding my sta...
# general
n
Hello everyone! I have a question regarding my stacks using the
pulumi_snowflake
provider. I am trying to updated multiple grant resources with the
retain_on_delete=True
which is defined through the
ResourceOptions
properties. My problem is that when I am running the
preview
or
up
operations I don’t see any change in my stack’s state so I am assuming that changes on
ResourceOptions
of an existing resource are not detectable by the Pulumi engine, if there is no actual update/change on the relevant resource. Am I right on this assumption? Furthermore, I would like to ask if there is a method through the Pulumi CLI commands to manually trigger those resources to become updated. Until now the only way that I have managed to approach my requirement is by using
pulumi up --replace '***_grant***'
which is the only cli operation that accepts wildcard filter on the targeted resources URNs.
Anyone with some feedback on this?