atmos packer source list
Use this command to list all Packer components that have source configured in a stack. This shows which components can be vendored using the source provisioner.
Source-Based Version Pinning
Learn how to configure the source field for per-environment version control.
Usage
atmos packer source list --stack <stack>
Description
The list command scans a stack's component configurations and displays all components that have source defined. This helps identify:
- Which components are configured for JIT vendoring
- The source URIs and versions for each component
- Components that may need to be vendored before use
note
This command is planned for a future release. Currently it returns a "not implemented" message.
Examples
List Components with Sources
atmos packer source list --stack dev
Expected output (when implemented):
COMPONENT URI VERSION
ami-builder github.com/cloudposse/packer-templates//ami-builder 1.0.0
docker-builder github.com/cloudposse/packer-templates//docker 1.0.0
Arguments
This command takes no positional arguments.
Flags
--stack/-s- Required. The Atmos stack name. Can also be set via
ATMOS_STACKenvironment variable.
See Also
- Source-Based Version Pinning — Design pattern for per-environment version control
atmos packer source— Parent command overviewatmos packer source describe— View source configuration for a specific componentatmos packer source pull— Vendor a specific component