LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

pulumi-down

Alias for pulumi destroy

TLDR

Destroy all resources (alias)
$ pulumi down
copy
Destroy with auto-approval
$ pulumi down --yes
copy
Destroy a specific stack
$ pulumi down --stack [name]
copy
Destroy without previewing first
$ pulumi down --skip-preview --yes
copy
Destroy and remove the stack
$ pulumi down --remove --yes
copy
Preview only, don't destroy
$ pulumi down --preview-only
copy

SYNOPSIS

pulumi down [options]

DESCRIPTION

pulumi down is an alias for pulumi destroy. Removes all resources managed by the current stack. Provides a more intuitive counterpart to pulumi up.

PARAMETERS

-y, --yes

Automatically approve and perform the destroy after previewing it.
-s, --stack name
The name of the stack to operate on. Defaults to the current stack.
-f, --skip-preview
Do not calculate a preview before performing the destroy.
--preview-only
Only show a preview of the destroy, but don't perform the destroy itself.
--target urn
Destroy only the specified resource URN (and its dependencies).
-x, --exclude urn
Exclude the specified resource URN from the destroy.
--exclude-protected
Do not destroy protected resources. Destroy all other resources.
--remove
Remove the stack and its config file after all resources are deleted.
-p, --parallel N
Allow P resource operations to run in parallel at once (default 16).
-j, --json
Serialize the destroy diffs, operations, and overall output as JSON.

SEE ALSO

Copied to clipboard
Kai