Aliases
Aliases let you create shortcut names for existing CLI commands. Any CLI command can be aliased, including Atmos native commands like terraform apply or describe stacks, as well as custom commands.
Configuration
CLI command aliases are configured in the aliases section:
atmos.yaml
Using Aliases
Execute an alias as you would any Atmos native or custom command:
Aliases in Help
The aliases configured in the aliases section automatically appear in Atmos help, shown as alias for '<command>'.
Argument Support
An alias automatically supports all command line arguments and flags that the aliased command accepts.
For example:
| Alias Command | Equivalent To |
|---|---|
atmos up <component> -s <stack> | atmos terraform apply <component> -s <stack> |
atmos dc <component> -s <stack> | atmos describe component <component> -s <stack> |
Common Aliases
Here are some commonly used aliases:
aliases:
# Terraform shortcuts
tf: terraform
tp: terraform plan
up: terraform apply
down: terraform destroy
# Describe shortcuts
ds: describe stacks
dc: describe component
da: describe affected
# Workflow shortcuts
wf: workflow
# List shortcuts (requires custom commands)
ls: list stacks
lc: list components
See Also
- CLI Configuration — Overview of CLI configuration
- Custom Commands — Create custom Atmos commands
