Skip to content

Commit

Permalink
db_sync: use AES256 in aws s3 sync (#781)
Browse files Browse the repository at this point in the history
  • Loading branch information
vrmiguel authored Oct 15, 2024
1 parent 2da34f7 commit cd80dbb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions registry/src/db_sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ async fn copy_s3_files(buckets: &S3Buckets) -> anyhow::Result<()> {
.arg("sync")
.arg(source_bucket)
.arg(dest_bucket)
.arg("--sse")
.arg("AES256")
.output()
.with_context(|| "Failed to execute aws s3 sync command")
});
Expand Down

0 comments on commit cd80dbb

Please sign in to comment.