This message was deleted.
# general
s
This message was deleted.
g
Usually if deployment get corrupted and pulumi destroy doesn't work anymore I just delete resource group in Azure and pulumi stack. I think you can do something similar in other cloud provider.
r
@gray-vr-25374 I hoped there was a better solution without deleting the stack but just reset state of it
g
There is option to call
pulumi refresh
sometime it can help. Or you can try to manually modify your stack state
pulumi stack export --file stackState.json
, in case number of resources in your environment is small it can work.
r
thanks refresh is what I needed