Destroy the Stack
Now that we’ve seen how to deploy changes to our program, let’s clean up and tear down the resources that are part of our stack.
To destroy resources, run the following:
$ pulumi destroyYou’ll be prompted to make sure you really want to delete these resources.
Previewing destroy (dev):
Type Name Plan
- pulumi:pulumi:Stack quickstart-dev delete
- └─ gcp:storage:Bucket my-bucket delete
Outputs:
- BucketName: "gs://my-bucket-b93323e"
Resources:
- 2 to delete
Do you want to perform this destroy? yes
Destroying (dev):
Type Name Status
- pulumi:pulumi:Stack quickstart-dev deleted
- └─ gcp:storage:Bucket my-bucket deleted
Outputs:
- BucketName: "gs://my-bucket-b93323e"
Resources:
- 2 deleted
Duration: 2s
To delete the stack itself, run pulumi stack rm.
Note that this removes the stack entirely from the Pulumi Service, along with all of its update history.
Next, we’ll look at some next steps.