Skip to content

Deleting Resources

NoahRJ edited this page Jun 15, 2026 · 1 revision

Deleting Resources

When you want to remove specific resources rather than bulk-removing resources missing from one side (the --clean behavior of pull/push), use the delete command.

  • iructl profile delete [OPTIONS]
  • iructl script delete [OPTIONS]
  • iructl app delete [OPTIONS]

Choose which resources to delete with the --id, --path, or --all options. --id and --path can be specified more than once. By default, delete removes the resource from both your local repository and your Iru tenant, and prompts for confirmation first. Use --force to skip the prompt, and --dry-run to preview what would be deleted without making any changes.

To limit the scope, pass --local to delete only the local copy (leaving the resource in Iru) or --remote to delete only the Iru copy (keeping your local files).

Examples:

iructl profile delete --id "de6cf090-cf14-4517-bc8e-110f2e4ed56a"
iructl app delete --path "apps/My App" --remote

Clone this wiki locally