Skip to content

cub space delete

cub space delete

Delete a space or multiple spaces

Synopsis

Delete a space or multiple spaces using bulk operations.

Single space delete:

  cub space delete my-space

Bulk delete with --where:

Delete multiple spaces at once based on search criteria.

Examples:

  # Delete all spaces with specific label
  cub space delete --where "Labels.Environment = 'staging'"

  # Delete spaces created before a date
  cub space delete --where "CreatedAt < '2024-01-01'"

  # Delete specific spaces by slug
  cub space delete --space my-space,another-space
cub space delete [<slug or id>] [flags]

Options

      --filter string     Filter entity to apply to the list. Specify as 'space/filter' for cross-space filters or just 'filter' for current space. Supports both slugs and UUIDs. The filter will be combined with any --where clause using AND logic. Examples: "production-filters/security-check", "my-filter-uuid", "validation-rules"
  -h, --help              help for delete
      --jq string         jq expression, suppressing default output
      --json              JSON output, suppressing default output
      --quiet             No default output.
      --recursive         Recursively delete all entities within the deleted space(s) if none have delete gates.
      --recursive-force   Recursively delete all entities within the deleted space(s) regardless whether any have delete gates.
      --space strings     target specific spaces by slug or UUID for bulk delete (can be repeated or comma-separated)
      --verbose           Detailed output, additive with default output
      --where string      Filter expression using SQL-inspired syntax. Supports conjunctions with AND. String operators: =, !=, <, >, <=, >=, LIKE, ILIKE, ~~, !~~, ~, ~*, !~, !~*. Pattern matching with LIKE/ILIKE uses % and _ wildcards. Regex operators (~, ~*, !~, !~*) support POSIX regular expressions. Examples: "Slug LIKE 'app-%'", "DisplayName ILIKE '%backend%'", "Slug ~ '^[a-z]+-[0-9]+$'"
      --yaml              YAML output, suppressing default output
      --yq string         yq expression, suppressing default output

Options inherited from parent commands

      --context string   The context to use for this command
      --debug            Debug output

SEE ALSO