Workflows
Configure where Atmos looks for workflow definition files. Workflows allow you to automate sequences of Atmos commands and other operations.
Configuration
Workflows are configured in the workflows section:
atmos.yaml
Configuration Options
workflows.base_pathBase path to Atmos workflow definition files. Supports both absolute and relative paths. When
base_pathis set in the root configuration, this path is relative to it. Can also be set usingATMOS_WORKFLOWS_BASE_PATHenvironment variable or--workflows-dircommand-line argument.
Directory Structure
A typical workflows directory structure:
stacks/workflows/
├── deploy.yaml
├── destroy.yaml
├── validate.yaml
└── maintenance/
├── backup.yaml
└── rotate-credentials.yaml
Example Workflow File
stacks/workflows/deploy.yaml
Environment Variables
ATMOS_WORKFLOWS_BASE_PATH- Base path to Atmos workflow definitions.
Related Commands
📄️ atmos workflow
Execute Atmos workflows
📄️ atmos list workflows
List available workflows
See Also
- CLI Configuration — Overview of CLI configuration
- Workflows — Complete guide to Atmos workflows