From 4a33c9cb44905077268bee0dd070002d22bf3971 Mon Sep 17 00:00:00 2001 From: Sami Wagiaalla Date: Thu, 11 Jun 2015 10:02:19 -0400 Subject: [PATCH] Add SharedCredentials Provider to AWS This will allows authentication with the AWS API using the ~/.aws/credentials file which is created by runnign 'aws configure' on a node. Signed-off-by: Sami Wagiaalla --- pkg/cloudprovider/providers/aws/aws.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/cloudprovider/providers/aws/aws.go b/pkg/cloudprovider/providers/aws/aws.go index c40d06452ca..75ef6543d21 100644 --- a/pkg/cloudprovider/providers/aws/aws.go +++ b/pkg/cloudprovider/providers/aws/aws.go @@ -475,6 +475,7 @@ func init() { []credentials.Provider{ &credentials.EnvProvider{}, &credentials.EC2RoleProvider{}, + &credentials.SharedCredentialsProvider{}, }) aws := &awsSDKProvider{creds: creds} return newAWSCloud(config, aws)