mjuarez / spothop

Gem for grabbing latest spot prices

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

spothop

Gem to grab lowest priced instance type in a region.

Requirements

Properly setup AWS Shared Credentials

Installation

Install the gem like so:

gem install spothop

Usage

require 'spothop'
SpotHop.GetPricing("m3.medium","us-east-1")
=> {:availability_zone=>"us-east-1d", :spot_price=>"0.010000"}

Use within Kitchen EC2!

---
<%= require 'spothop' %>
driver_config:
  region: <%= ENV['AWS_REGION'] || 'us-east-1' %>
  price: <%= require 'spothop'; SpotHop.GetPricing(ENV['EC2_INSTANCE_TYPE'],ENV['AWS_REGION'])[:spot_price] %>
  availability_zone: <%= require 'spothop'; SpotHop.GetPricing(ENV['EC2_INSTANCE_TYPE'],ENV['AWS_REGION'])[:availability_zone] %>

Author

About

Gem for grabbing latest spot prices


Languages

Language:Ruby 100.0%