If a resource was manually deleted in aws, how to ...
# general
r
If a resource was manually deleted in aws, how to manually delete the resource in the pulumi stack?
b
you’d use
pulumi state delete
to remove it from your pulumi state, or you can just remove the code from your pulumi configuration and run
pulumi up -r
r
Thanks!
pulumi state delete
worked
b
note if it’s still in your code, pulumi will try to recreate it on the next run
r
Yes that's exactly what I want 🙂