atmos toolchain aliases
View all configured toolchain aliases to quickly identify which shorthand commands are available for your tools. This helps you discover convenient aliases when working with your components and workflows.
Usage
Execute the atmos toolchain aliases command like this:
atmos toolchain aliases
Examples
List All Aliases
atmos toolchain aliases
Example output:
Configured Aliases:
ALIAS TOOL
terraform hashicorp/terraform
tf hashicorp/terraform
tofu opentofu/opentofu
kubectl kubernetes-sigs/kubectl
helm helm/helm
tflint terraform-linters/tflint
6 aliases configured
Use with JSON Output
atmos toolchain aliases --format json
Example output:
{
"aliases": {
"terraform": "hashicorp/terraform",
"tf": "hashicorp/terraform",
"tofu": "opentofu/opentofu",
"kubectl": "kubernetes-sigs/kubectl"
}
}
Flags
--format(optional)Output format:
table,json, oryaml. Default:tableEnvironment variable:
ATMOS_TOOLCHAIN_FORMAT
Configuration
Aliases are configured in your atmos.yaml file:
atmos.yaml
Use Cases
Discover Available Shortcuts
See which aliases are configured before running commands:
# Check available aliases
atmos toolchain aliases
# Use the alias
atmos toolchain install tf@1.9.8
Verify Alias Configuration
After modifying atmos.yaml, verify aliases are configured correctly:
# Check aliases loaded properly
atmos toolchain aliases
# Test with a command
atmos toolchain info tf
Export for Documentation
Generate alias documentation for your team:
# Export as YAML for documentation
atmos toolchain aliases --format yaml > docs/tool-aliases.yaml
# Export as JSON for scripts
atmos toolchain aliases --format json > .toolchain-aliases.json
How Aliases Work
Aliases provide shorthand names that map to full owner/repo tool identifiers:
- Resolution order: Aliases are resolved before registry lookups
- Multiple mappings: Multiple aliases can point to the same tool (e.g.,
tfandterraform) - Universal usage: Aliases work with all toolchain commands (
install,exec,which, etc.) - Registry agnostic: Works with all registry types (Aqua, inline, custom)
Related Commands
atmos toolchain install- Install tools using aliasesatmos toolchain info- View tool information using aliasesatmos toolchain exec- Execute tools using aliases
Related Documentation
- Toolchain Overview - Complete toolchain documentation
- Tool Aliases Configuration - Alias configuration details