Skip to main content

Usage

zwrm destroy
Destroy machines belonging to your application, or the application itself.

Flags

FlagTypeDefaultDescription
--appstringfrom zwrm.tomlApplication name
--app-idstringApplication UUID
--machinestringDestroy a specific machine by ID prefix
--allboolfalseDestroy machines and the app itself
--force, -fboolfalseSkip confirmation prompt

Behavior

CommandWhat it destroys
zwrm destroyAll machines for the app
zwrm destroy --machine abc123A single machine
zwrm destroy --allAll machines and the app
A confirmation prompt is shown before any destructive action. Pass --force to skip it.
Destroying an app with --all is permanent and cannot be undone. All machines, deployments, and associated resources are deleted.

Examples

Destroy all machines (keeps the app):
zwrm destroy --app my-app
Destroy a single machine:
zwrm destroy --machine abc123
Destroy everything without confirmation:
zwrm destroy --all --force