Module: Aws::Google::CachedCredentials

Includes:
RefreshingCredentials
Included in:
Aws::Google
Defined in:
lib/aws/google/cached_credentials.rb

Overview

Mixin module extending ‘RefreshingCredentials` that caches temporary credentials in the credentials file, so a single session can be reused across multiple processes. The temporary credentials are saved to a separate profile with a ’_session’ suffix.

Instance Method Summary collapse

Instance Method Details

#initialize(options = {}) ⇒ Object

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :profile (String)

    AWS Profile to store temporary credentials (default ‘default`)



12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/aws/google/cached_credentials.rb', line 12

def initialize(options = {})
  # Use existing AWS credentials stored in the shared session config if available.
  # If this is `nil` or expired, #refresh will be called on the first AWS API service call
  # to generate AWS credentials derived from Google authentication.
  @mutex = Mutex.new

  @profile = options[:profile] || ENV['AWS_PROFILE'] || ENV['AWS_DEFAULT_PROFILE'] || 'default'
  @session_profile = @profile + '_session'
  @expiration = Aws.shared_config.expiration(profile: @session_profile) rescue nil
  @credentials = Aws.shared_config.credentials(profile: @session_profile) rescue nil
  refresh_if_near_expiration
end

#refresh_if_near_expirationObject



25
26
27
28
29
30
31
32
33
34
# File 'lib/aws/google/cached_credentials.rb', line 25

def refresh_if_near_expiration
  return unless near_expiration?(SYNC_EXPIRATION_LENGTH)

  @mutex.synchronize do
    if near_expiration?(SYNC_EXPIRATION_LENGTH)
      refresh
      write_credentials
    end
  end
end

#write_credentialsObject

Write credentials and expiration to AWS credentials file.



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/aws/google/cached_credentials.rb', line 37

def write_credentials
  # Ensure the AWS CLI is available before attempting to write credentials.
  return unless system('which aws >/dev/null 2>&1')

  # Manually map the credentials to the keys used by AWS CLI
  credentials_map = {
    'aws_access_key_id' => @credentials.access_key_id,
    'aws_secret_access_key' => @credentials.secret_access_key,
    'aws_session_token' => @credentials.session_token,
    'expiration' => @expiration
  }

  # Use the AWS CLI to set the credentials in the session profile
  credentials_map.each do |key, value|
    system("aws configure set #{key} #{value} --profile #{@session_profile}")
  end
end