Skip to content

Commit

Permalink
DEVPROD-13976 Store keys for internal buckets (#8812)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZackarySantana authored Mar 10, 2025
1 parent 3b09379 commit 68180d7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions agent/command/s3_put.go
Original file line number Diff line number Diff line change
Expand Up @@ -573,10 +573,10 @@ func (s3pc *s3put) attachFiles(ctx context.Context, comm client.Communicator, lo
// If the bucket is an internal one, Evergreen does not need the credentials
// to sign the URL. If the bucket is not an internal one, Evergreen needs the
// credentials to sign the URL.
if !utility.StringSliceContains(s3pc.internalBuckets, s3pc.Bucket) {
key = s3pc.AwsKey
secret = s3pc.AwsSecret
}
// if !utility.StringSliceContains(s3pc.internalBuckets, s3pc.Bucket) {
key = s3pc.AwsKey
secret = s3pc.AwsSecret
// }
}

files = append(files, &artifact.File{
Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var (

// Agent version to control agent rollover. The format is the calendar date
// (YYYY-MM-DD).
AgentVersion = "2025-03-11"
AgentVersion = "2025-03-11-a"
)

const (
Expand Down

0 comments on commit 68180d7

Please sign in to comment.