Skip to main content

astroctl_cloud_aws_machines_list

astroctl cloud aws machines list

List AWS machine types

Synopsis

List available AWS EC2 instance types with pricing information.

astroctl cloud aws machines list [flags]

Examples


# List machine types in us-west-2
astroctl cloud aws machines list -r us-west-2

# Filter by CPU and memory
astroctl cloud aws machines list -r us-west-2 --cpuMin 2 --memMax 4096 --category GeneralPurpose

# Get specific machine type info
astroctl cloud aws machines list -r us-west-2 -m t3.medium

# Output as JSON
astroctl cloud aws machines list -r us-west-2 -o json

Options

--architecture string Architecture filter: x86_64, arm64
--category string Category filter: GeneralPurpose, ComputeOptimized, MemoryOptimized, AcceleratorOptimized, GPU
--cpuMax int Maximum CPU cores
--cpuMin int Minimum CPU cores
-h, --help help for list
-m, --machinetype string Specific machine type to get info for
--memMax int Maximum memory (MB)
--memMin int Minimum memory (MB)
-o, --output string Output format (table|json|yaml) (default "table")
-r, --region string AWS region (required)
-z, --zone string Zone ID for machine type info

SEE ALSO