1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/credential_fetcher.rb

86 lines
3.4 KiB
Ruby
Raw Normal View History

module Fog
module AWS
module CredentialFetcher
2016-06-29 18:24:53 -04:00
INSTANCE_METADATA_HOST = "http://169.254.169.254"
INSTANCE_METADATA_PATH = "/latest/meta-data/iam/security-credentials/"
2016-06-29 18:24:53 -04:00
INSTANCE_METADATA_AZ = "/latest/meta-data/placement/availability-zone/"
2016-07-25 19:36:29 -04:00
CONTAINER_CREDENTIALS_HOST = "http://169.254.170.2"
module ServiceMethods
def fetch_credentials(options)
2016-05-11 16:31:54 -04:00
if options[:use_iam_profile] && Fog.mocking?
return Fog::Compute::AWS::Mock.data[:iam_role_based_creds]
2016-05-11 16:31:54 -04:00
end
if options[:use_iam_profile]
begin
2016-07-25 19:36:29 -04:00
role_data = nil
2017-04-19 21:44:31 -04:00
region = options[:region]
2016-07-25 19:36:29 -04:00
if ENV["AWS_CONTAINER_CREDENTIALS_RELATIVE_URI"]
connection = options[:connection] || Excon.new(CONTAINER_CREDENTIALS_HOST)
credential_path = options[:credential_path] || ENV["AWS_CONTAINER_CREDENTIALS_RELATIVE_URI"]
role_data = connection.get(:path => credential_path, :idempotent => true, :expects => 200).body
2016-07-25 19:36:29 -04:00
connection = options[:metadata_connection] || Excon.new(INSTANCE_METADATA_HOST)
2017-04-19 21:44:31 -04:00
region ||= connection.get(:path => INSTANCE_METADATA_AZ, :idempotent => true, :expects => 200).body[0..-2]
2016-07-25 19:36:29 -04:00
else
connection = options[:connection] || Excon.new(INSTANCE_METADATA_HOST)
role_name = connection.get(:path => INSTANCE_METADATA_PATH, :idempotent => true, :expects => 200).body
role_data = connection.get(:path => INSTANCE_METADATA_PATH+role_name, :idempotent => true, :expects => 200).body
2017-04-19 21:44:31 -04:00
region ||= connection.get(:path => INSTANCE_METADATA_AZ, :idempotent => true, :expects => 200).body[0..-2]
2016-07-25 19:36:29 -04:00
end
session = Fog::JSON.decode(role_data)
credentials = {}
credentials[:aws_access_key_id] = session['AccessKeyId']
credentials[:aws_secret_access_key] = session['SecretAccessKey']
credentials[:aws_session_token] = session['Token']
credentials[:aws_credentials_expire_at] = Time.xmlschema session['Expiration']
2016-06-29 18:24:53 -04:00
# set region by default to the one the instance is in.
credentials[:region] = region
#these indicate the metadata service is unavailable or has no profile setup
credentials
rescue Excon::Error => e
Fog::Logger.warning("Unable to fetch credentials: #{e.message}")
super
end
else
super
end
end
end
module ConnectionMethods
def refresh_credentials_if_expired
refresh_credentials if credentials_expired?
end
private
def credentials_expired?
@use_iam_profile &&
(!@aws_credentials_expire_at ||
(@aws_credentials_expire_at && Fog::Time.now > @aws_credentials_expire_at - 15)) #new credentials become available from around 5 minutes before expiration time
end
def refresh_credentials
if @use_iam_profile
2017-05-22 19:51:20 -04:00
new_credentials = service.fetch_credentials :use_iam_profile => @use_iam_profile, :region => @region
if new_credentials.any?
setup_credentials new_credentials
return true
else
false
end
else
false
end
end
end
end
end
end