is there a way to manually remove a resource? I ha...
# general
e
is there a way to manually remove a resource? I have some
Command
resource that is failing to delete, even after the delete command was removed from the resource declaration
b
@echoing-oil-42947 if you've deleted it externally, you can prune it from pulumi via https://www.pulumi.com/docs/reference/cli/pulumi_state_delete/
it requires an urn, which can be annoying to find at times. if you don't have one in your pulumi up output, try
pulumi stack -u
and find it there
e
Yeah that's exactly what I needed, thank you!
I've dealt with getting URNs when I need to replace a specific resource without touching anything else (e.g. vault tokens)