Default to 12.04 64-bit
Default to US West (Oregon)
# File lib/blimpy/boxes/aws.rb, line 37 def fog @fog ||= begin Fog::Compute.new(:provider => 'AWS', :region => @region) end end
# File lib/blimpy/boxes/aws.rb, line 27 def validate! if @region.nil? raise Blimpy::BoxValidationError, "Cannot spin up machine without a set region" end if fog.security_groups.get(@group).nil? raise Blimpy::BoxValidationError, "The security group '#{@group}' does not exist in #{@region}" end end
Generated with the Darkfish Rdoc Generator 2.