From b9a015e5b968cb3dd053f8c622aa2229a80eab26 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 19 Jan 2021 18:21:08 +0000 Subject: [PATCH] s3: fix --s3-profile which wasn't working - fixes #4757 --- backend/s3/s3.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/s3/s3.go b/backend/s3/s3.go index 43b4f6984..9bf053ca5 100644 --- a/backend/s3/s3.go +++ b/backend/s3/s3.go @@ -1562,6 +1562,8 @@ func s3Connection(ctx context.Context, opt *Options, client *http.Client) (*s3.S if opt.EnvAuth && opt.AccessKeyID == "" && opt.SecretAccessKey == "" { // Enable loading config options from ~/.aws/config (selected by AWS_PROFILE env) awsSessionOpts.SharedConfigState = session.SharedConfigEnable + // Set the name of the profile if supplied + awsSessionOpts.Profile = opt.Profile } ses, err := session.NewSessionWithOptions(awsSessionOpts) if err != nil {