Hi Team, I have a situation and would need your he...
# general
e
Hi Team, I have a situation and would need your help. I had a pulumi code create a secret called
abc
. But this secret was being updated by a separate process, hence causing pulumi to revert the change every time it runs. Now, I made a pulumi code change to create
abc1
, so that pulumi writes to
abc1
and the other process writes to
abc
. hoping for no conflicts. But now, i think pulumi went a deleted the
abc
secret as well. I know first time it will delete
abc
and create
abc1
, but will it do that every time? I mean anytime we create secret
abc
will pulumi go and delete it?
d
It will not; it deleted it as
abc
was still tracked in state when you moved to
abc1
e
So, do you mean it should not delete in the future? Once, i understand, but the subsequent times, it should not, is what i thought.
d
Correct, it shouldn't delete with subsequent runs