Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/src/content/docs/reference/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -1292,6 +1292,18 @@ sandbox:
- /run/docker.sock:/var/run/docker.sock:ro
```

### Excluded Env (`excluded-env`)

A top-level frontmatter field that lists environment variable names to unconditionally exclude from the AWF agent container via `--exclude-env`. Use this when an environment variable is set from a source the compiler cannot automatically detect as credential-bearing — for example, a `workflow_dispatch` input that carries an ephemeral token generated by an upstream job. Names are deduplicated and merged with those auto-detected from `secrets.*` and `needs.*.outputs.*` references.

```aw wrap
excluded-env:
- MY_DISPATCH_TOKEN
- ANOTHER_SENSITIVE_VAR
```

See [Sandbox Configuration](/gh-aw/reference/sandbox/).

### `sandbox.agent.runtime`

A `sandbox.agent` field that selects the container runtime used to execute the AI agent. Supported values:
Expand Down
Loading