`pulumi stack export` then removing the resource i...
# kubernetes
l
pulumi stack export
then removing the resource into a
pulumi stack import
caused the
create
message to appear on the stack preview, but it didn’t actually happen
b
Have you tried
pulumi refresh
?
l
ah, didn’t know that was there!
Will give it a go next time, thanks
😃 1
p
you can also manually remove a single resource like
pulumi destroy --target urn:pulumi:<thing>
and it should remove from state
l
👍