From d0b2c1b190c2b321de0bb782f1e8ffa3f8e7ba9f Mon Sep 17 00:00:00 2001 From: Oscar Beaumont Date: Wed, 22 Oct 2025 01:54:32 +0800 Subject: [PATCH] add one --- infra/sst.config.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/infra/sst.config.ts b/infra/sst.config.ts index 6747adb5ca..f9cf30efe8 100644 --- a/infra/sst.config.ts +++ b/infra/sst.config.ts @@ -62,7 +62,15 @@ export default $config({ const recordingsBucket = new aws.s3.BucketV2( "RecordingsBucket", - {}, + { + lifecycleRules: [ + { + id: "cleanupMultipleUploads", + enabled: true, + abortIncompleteMultipartUploadDays: 7, + }, + ], + }, { retainOnDelete: true }, );