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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/auth/private/aws_profile.h>
#include <aws/auth/credentials.h>
#include <aws/common/environment.h>
#include <aws/common/string.h>
static const struct aws_string *s_profile_get_property_value(
const struct aws_profile *profile,
const struct aws_string *property_name) {
const struct aws_profile_property *property = aws_profile_get_property(profile, property_name);
if (property == NULL) {
return NULL;
}
return aws_profile_property_get_value(property);
}
AWS_STATIC_STRING_FROM_LITERAL(s_access_key_id_profile_var, "aws_access_key_id");
AWS_STATIC_STRING_FROM_LITERAL(s_secret_access_key_profile_var, "aws_secret_access_key");
AWS_STATIC_STRING_FROM_LITERAL(s_session_token_profile_var, "aws_session_token");
struct aws_credentials *aws_credentials_new_from_profile(
struct aws_allocator *allocator,
const struct aws_profile *profile) {
const struct aws_string *access_key = s_profile_get_property_value(profile, s_access_key_id_profile_var);
const struct aws_string *secret_key = s_profile_get_property_value(profile, s_secret_access_key_profile_var);
if (access_key == NULL || secret_key == NULL) {
return NULL;
}
const struct aws_string *session_token = s_profile_get_property_value(profile, s_session_token_profile_var);
return aws_credentials_new_from_string(allocator, access_key, secret_key, session_token, UINT64_MAX);
}
|