Delete an environment variable from a context

## Usage

`circleci context secret delete <context-id|context-name> [flags]`

Aliases: `circleci context secret rm`

## Arguments

A context can be specified by name or ID:
- By name, for example, `context-name`
- By ID, for example, `849e7902-802f-4082-8a70-da77dcd084e3`

## Flags

| Flag            | Description                                                       |
| --------------- | ----------------------------------------------------------------- |
| `-f, --force`   | skip confirmation prompt                                          |
| `--name string` | Name of the environment variable to delete                        |
| `--org string`  | Organization slug (e.g. gh/myorg); used when resolving name to ID |

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- Delete a variable (with confirmation): 
  `circleci context secret delete ctx-uuid-here --name MY_SECRET`
- Delete without confirmation: 
  `circleci context secret delete ctx-uuid-here --name MY_SECRET --force`

## Details

Remove an environment variable from a CircleCI context.

This action is irreversible. Jobs that depend on this variable will
fail until a new value is set.

