Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.murmur.dev/llms.txt

Use this file to discover all available pages before exploring further.

Deletes a catalog resource.
This permanently removes the resource. There is no confirmation prompt and no undo.

Synopsis

murmur rm <kind> <name>

Arguments

NameTypeRequiredDescription
kindstringyesThe catalog resource kind. Run murmur describe to list available kinds.
namestringyesThe 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

CodeMeaningWhat to do
NOT_FOUNDNo resource with that kind and name exists.Check the name. Run murmur get <kind> to list available resources.
UNAUTHENTICATEDIdentity token is missing or expired.Run murmur auth or check your murmur.local.yaml configuration.
FAILED_PRECONDITIONAnother 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_DENIEDThe resource is a platform builtin and cannot be deleted.Platform-managed resources are immutable.