s3: fix --s3-profile which wasn't working - fixes #4757

This commit is contained in:
Nick Craig-Wood 2021-01-19 18:21:08 +00:00
parent d72d9e591a
commit b9a015e5b9
1 changed files with 2 additions and 0 deletions

View File

@ -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 {