Skip to content

Instantly share code, notes, and snippets.

@alexei-led
Created April 29, 2021 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexei-led/2b7a92a6126f21edac2319cd1507c352 to your computer and use it in GitHub Desktop.
Save alexei-led/2b7a92a6126f21edac2319cd1507c352 to your computer and use it in GitHub Desktop.
Markdium-Exploring AWS Spot Instances from command line
spotinfo --type=t4g.small --output=table --region=all
# output
┌────────────────┬───────────────┬──────┬────────────┬────────────────────────┬───────────────────────────┬──────────┐
│ REGION │ INSTANCE INFO │ VCPU │ MEMORY GIB │ SAVINGS OVER ON-DEMAND │ FREQUENCY OF INTERRUPTION │ USD/HOUR │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ us-west-2 │ t4g.small │ 2 │ 2 │ 70% │ <5% │ 0.005 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ ap-northeast-1 │ t4g.small │ 2 │ 2 │ 70% │ <5% │ 0.0065 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ eu-west-1 │ t4g.small │ 2 │ 2 │ 70% │ <5% │ 0.0055 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ ap-south-1 │ t4g.small │ 2 │ 2 │ 70% │ <5% │ 0.0034 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ us-east-2 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.005 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ ap-east-1 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.007 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ eu-central-1 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.0058 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ ap-southeast-2 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.0064 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ eu-north-1 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.0052 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ sa-east-1 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.008 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ ap-southeast-1 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.0064 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ us-east-1 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.005 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ ca-central-1 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.0055 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ us-west-1 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.006 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ ap-northeast-2 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.0062 │
├────────────────┼───────────────┼──────┼────────────┼────────────────────────┼───────────────────────────┼──────────┤
│ eu-west-2 │ t4g.small │ 2 │ 2 │ 70% │ 5-10% │ 0.0056 │
└────────────────┴───────────────┴──────┴────────────┴────────────────────────┴───────────────────────────┴──────────┘
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment