# File lib/blimpy/boxes/aws.rb, line 11 def self.fog_server_for_instance(id, blimpdata) region = blimpdata[:region] || DEFAULT_REGION fog = Fog::Compute.new(:provider => 'AWS', :region => region) fog.servers.get(id) end