Skip to content

Commit 9398fd6

Browse files
readd session token to s3 credentials (#3144) (#3182)
Signed-off-by: Jan Jansen <[email protected]> (cherry picked from commit 3008ee5) Co-authored-by: Jan Jansen <[email protected]>
1 parent 7fdde5d commit 9398fd6

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* [BUGFIX] Include statusMessage intrinsic attribute in tag search. [#3084](https://github.com/grafana/tempo/pull/3084) (@rcrowe)
44
* [BUGFIX] Fix compactor ignore configured S3 headers [#3149](https://github.com/grafana/tempo/pull/3154) (@Batkilin)
5+
* [BUGFIX] Readd session token to s3 credentials. [#3144](https://github.com/grafana/tempo/pull/3144) (@farodin91)
56

67
## v2.3.0-rc.0 / 2023-10-20
78

tempodb/backend/s3/s3.go

+1
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,7 @@ func fetchCreds(cfg *Config) (*credentials.Credentials, error) {
435435
Value: credentials.Value{
436436
AccessKeyID: cfg.AccessKey,
437437
SecretAccessKey: cfg.SecretKey.String(),
438+
SessionToken: cfg.SessionToken.String(),
438439
},
439440
}),
440441
wrapCredentialsProvider(&credentials.EnvAWS{}),

0 commit comments

Comments
 (0)