Deletes a catalog resource.
This permanently removes the resource. There is no confirmation prompt and no undo.
Synopsis
Arguments
| Name | Type | Required | Description |
|---|
kind | string | yes | The catalog resource kind. Run murmur describe to list available kinds. |
name | string | yes | The resource name to delete. |
Examples
Delete an environment
murmur rm environment staging
Deleted environment "staging"
Delete a secret
murmur rm secret NPM_TOKEN
Deleted secret "NPM_TOKEN"
Errors
| Code | Meaning | What to do |
|---|
NOT_FOUND | No resource with that kind and name exists. | Check the name. Run murmur get <kind> to list available resources. |
UNAUTHENTICATED | Identity token is missing or expired. | Run murmur auth or check your murmur.local.yaml configuration. |
FAILED_PRECONDITION | Another resource references this one (e.g. a workspace references the environment you are trying to delete). | Remove or update the referencing resources first, then retry the delete. |
PERMISSION_DENIED | The resource is a platform builtin and cannot be deleted. | Platform-managed resources are immutable. |