https://pulumi.com logo
Title
r

red-airline-54646

02/28/2023, 1:33 AM
during the pulumi import, we do encounter
secret already exists
hence, we deleted the secret manually (and purged) then add
ignoreChanges
on secret's properties.value. this way, we were able to import successfully to pulumi. However, after removing the
ignoreChanges
Pulumi is not triggering a creation for the secret. Anyone here who encountered the same? Any clue what is happening?
l

little-cartoon-10569

02/28/2023, 2:35 AM
If Pulumi thinks the secret already exists, then it's not going to create it, even if you delete it. You will need to delete the secret from Pulumi state. You could use
pulumi refresh
, or delete it via
pulumi state delete <urn>
.
r

red-airline-54646

02/28/2023, 6:54 AM
Thanks for the input @little-cartoon-10569 🙂