# output

The workflow-level `output` field sets the default command output mode for all steps in the workflow.

```yaml
workflows:
  verbose-deploy:
    output: log
    steps:
      - name: plan
        type: atmos
        command: terraform plan vpc
        output: viewport
```

## Values

- **`raw`**
  Pass command output directly to the terminal. This is the default behavior.
- **`log`**
  Display grouped output with step headers.
- **`viewport`**
  Display output in a scrollable viewport.
- **`none`**
  Suppress command output and rely on the exit code.

Step-level `output` overrides the workflow-level default for that step.
