Sha256: 8f95d1c270f855078762ac443e5e7e724a95daed27a7e6a30c55d596d618fb02
Contents?: true
Size: 535 Bytes
Versions: 16
Compression:
Stored size: 535 Bytes
Contents
module Propono def self.aws_options AwsConfig.new(Propono.config).aws_options end class AwsConfig def initialize(config) @config = config end def aws_options if @config.use_iam_profile { :use_iam_profile => true, :region => @config.queue_region } else { :aws_access_key_id => @config.access_key, :aws_secret_access_key => @config.secret_key, :region => @config.queue_region } end end end end
Version data entries
16 entries across 16 versions & 1 rubygems