Skip to content

Commit 93f86c4

Browse files
authored
Merge pull request #5 from serokell/master
Default to AWS_SHARED_CREDENTIALS_FILE
2 parents aeab895 + 5606b4c commit 93f86c4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

main.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ func main() {
3535

3636
// Get credentials
3737
usr, _ := user.Current()
38-
credentialsPath := fmt.Sprintf("%s/.aws/credentials", usr.HomeDir)
38+
39+
credentialsPath := os.Getenv("AWS_SHARED_CREDENTIALS_FILE")
40+
if len(credentialsPath) == 0 {
41+
credentialsPath = fmt.Sprintf("%s/.aws/credentials", usr.HomeDir)
42+
}
43+
3944
credentialsProvider := credentials.NewSharedCredentials(credentialsPath, profileFlag)
4045
creds, err := credentialsProvider.Get()
4146
check(err)

0 commit comments

Comments
 (0)