We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20d9f0c commit a52e297Copy full SHA for a52e297
backend/src/iac/backend-stack.ts
@@ -533,18 +533,6 @@ export class BackendStack extends cdk.Stack {
533
const uploadBucket = new s3.Bucket(this, `${appName}UploadBucket-${props.environment}`, {
534
bucketName: `${appName.toLowerCase()}-uploads-${props.environment}-${this.account}`,
535
removalPolicy: RemovalPolicy.RETAIN,
536
- lifecycleRules: [
537
- {
538
- noncurrentVersionExpiration: cdk.Duration.days(7),
539
- // Move objects to infrequent access after 30 days
540
- transitions: [
541
542
- storageClass: s3.StorageClass.INFREQUENT_ACCESS,
543
- transitionAfter: cdk.Duration.days(30),
544
- },
545
- ],
546
547
548
cors: [
549
{
550
allowedMethods: [
0 commit comments