1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
# frozen_string_literal: true
module Aws
# @api private
class CredentialProviderChain
def initialize(config = nil)
@config = config
end
# @return [CredentialProvider, nil]
def resolve
providers.each do |method_name, options|
provider = send(method_name, options.merge(config: @config))
return provider if provider && provider.set?
end
nil
end
private
def providers
[
[:static_credentials, {}],
[:static_profile_assume_role_web_identity_credentials, {}],
[:static_profile_assume_role_credentials, {}],
[:static_profile_credentials, {}],
[:static_profile_process_credentials, {}],
[:env_credentials, {}],
[:assume_role_web_identity_credentials, {}],
[:assume_role_credentials, {}],
[:shared_credentials, {}],
[:process_credentials, {}],
[:instance_profile_credentials, {
retries: @config ? @config.instance_profile_credentials_retries : 0,
http_open_timeout: @config ? @config.instance_profile_credentials_timeout : 1,
http_read_timeout: @config ? @config.instance_profile_credentials_timeout : 1
}]
]
end
def static_credentials(options)
if options[:config]
Credentials.new(
options[:config].access_key_id,
options[:config].secret_access_key,
options[:config].session_token
)
end
end
def static_profile_assume_role_web_identity_credentials(options)
if Aws.shared_config.config_enabled? && options[:config] && options[:config].profile
Aws.shared_config.assume_role_web_identity_credentials_from_config(
profile: options[:config].profile,
region: options[:config].region
)
end
end
def static_profile_assume_role_credentials(options)
if Aws.shared_config.config_enabled? && options[:config] && options[:config].profile
assume_role_with_profile(options, options[:config].profile)
end
end
def static_profile_credentials(options)
if options[:config] && options[:config].profile
SharedCredentials.new(profile_name: options[:config].profile)
end
rescue Errors::NoSuchProfileError
nil
end
def static_profile_process_credentials(options)
if Aws.shared_config.config_enabled? && options[:config] && options[:config].profile
process_provider = Aws.shared_config.credential_process(profile: options[:config].profile)
ProcessCredentials.new(process_provider) if process_provider
end
rescue Errors::NoSuchProfileError
nil
end
def env_credentials(_options)
key = %w[AWS_ACCESS_KEY_ID AMAZON_ACCESS_KEY_ID AWS_ACCESS_KEY]
secret = %w[AWS_SECRET_ACCESS_KEY AMAZON_SECRET_ACCESS_KEY AWS_SECRET_KEY]
token = %w[AWS_SESSION_TOKEN AMAZON_SESSION_TOKEN]
Credentials.new(envar(key), envar(secret), envar(token))
end
def envar(keys)
keys.each do |key|
return ENV[key] if ENV.key?(key)
end
nil
end
def determine_profile_name(options)
(options[:config] && options[:config].profile) || ENV['AWS_PROFILE'] || ENV['AWS_DEFAULT_PROFILE'] || 'default'
end
def shared_credentials(options)
profile_name = determine_profile_name(options)
SharedCredentials.new(profile_name: profile_name)
rescue Errors::NoSuchProfileError
nil
end
def process_credentials(options)
profile_name = determine_profile_name(options)
if Aws.shared_config.config_enabled? &&
(process_provider = Aws.shared_config.credential_process(profile: profile_name))
ProcessCredentials.new(process_provider)
end
rescue Errors::NoSuchProfileError
nil
end
def assume_role_credentials(options)
if Aws.shared_config.config_enabled?
assume_role_with_profile(options, determine_profile_name(options))
end
end
def assume_role_web_identity_credentials(options)
region = options[:config].region if options[:config]
if (role_arn = ENV['AWS_ROLE_ARN']) && (token_file = ENV['AWS_WEB_IDENTITY_TOKEN_FILE'])
cfg = {
role_arn: role_arn,
web_identity_token_file: token_file,
role_session_name: ENV['AWS_ROLE_SESSION_NAME']
}
cfg[:region] = region if region
AssumeRoleWebIdentityCredentials.new(cfg)
elsif Aws.shared_config.config_enabled?
profile = options[:config].profile if options[:config]
Aws.shared_config.assume_role_web_identity_credentials_from_config(
profile: profile,
region: region
)
end
end
def instance_profile_credentials(options)
if ENV['AWS_CONTAINER_CREDENTIALS_RELATIVE_URI']
ECSCredentials.new(options)
else
InstanceProfileCredentials.new(options)
end
end
def assume_role_with_profile(options, profile_name)
region = (options[:config] && options[:config].region)
Aws.shared_config.assume_role_credentials_from_config(
profile: profile_name,
region: region,
chain_config: @config
)
end
end
end
|