brettweavnet/outliers

View on GitHub
lib/outliers/providers/aws/ec2.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Outliers
  module Providers
    module Aws
      class Ec2 < Provider

        include Shared

        def connect
          logger.debug "Connecting to region '#{@region}'." unless @ec2
          @ec2 ||= ::AWS::EC2.new config
        end

      end
    end
  end
end