This message was deleted.
# aws
s
This message was deleted.
e
I know neither the cluster nor the instance exist on AWS any more... how can I instruct pulumi to force remove that state?
I know I can
stack rm --force
but I have about 50 other resources in the stack which also need to be removed from AWS, not just pulumi state
OK, so
pulumi state delete <cluster-instance-urn>
wasn't working because the urn had a $ char in it which wasn't properly escaped 🤦‍♂️
r
I think
pulumi refresh
might’ve also helped clear this up
e
Thanks @red-match-15116 - that's one thing I didn't try 🙂 I'll remember it for next time