Help!! I just realized that when I create new proj...
# getting-started
f
Help!! I just realized that when I create new projects on my laptop, the project stack is registered in my Pulumi cloud dashboard! How can I delete stacks from the dashboard if the corresponding stack has already been deleted from my laptop?
l
pulumi stack rm
from the CLI: https://www.pulumi.com/docs/iac/cli/commands/pulumi_stack_rm/ The app mentions it on the stack settings page.
How have you been deleting the stack from your computer?
pulumi stack rm
is the only way to delete a stack (well, there's also the automation api).
f
I was just doing
rm -rf
on the project folder. Then I realized there were stacks in my dashboard. It's all good now as I figured out the
pulumi stack rm
cli command. Thank you for your reply.