-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aws_s3: cannot use noncurrent lifecycle rules on a version-suspended bucket #22392
Comments
@otaviomacedo Any update on this? I would think the fix is just to remove the invalid restriction. |
@otaviomacedo We stumbled upon the same issue. When already having versioned buckets for which you want to suspend versioning, it would make sense to set lifecycle rules for noncurrent objects in order to get rid of the existing ones from the previous "versioning times". |
Interesting bug, thanks for reporting! We make the check here: aws-cdk/packages/@aws-cdk/aws-s3/lib/bucket.ts Lines 1874 to 1879 in 793dd76
If S3 doesn't reject these rules then we shouldn't be throwing this error, especially since there's a valid case which you've described in which these settings would make sense. We accept contributions! Check out our contributing guide if you're interested - there's a low chance the team will be able to address this soon but we'd be happy to review a PR 🙂 |
… objects when bucket versionining is not set up (#22803) fixes #22392 ---- ### All Submissions: * [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [x] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [x] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
|
We are using |
Describe the bug
If I disable versioning on an S3 bucket, CDK does not allow me to create any lifecycle rules against non-current versions (e.g.,
noncurrent_version_expiration
).Expected Behavior
CDK must allow creating such lifecycle rules against versioning-suspended buckets. Note that S3 itself has not problem with this - it allows creating such rules against both versioning-suspended and versioning-disabled buckets.
Current Behavior
Reproduction Steps
First deploy a bucket like so:
Then disable versioning and add a lifecycle rule like so:
Possible Solution
No response
Additional Information/Context
No response
CDK CLI Version
2.39.1 (build f188fac)
Framework Version
No response
Node.js Version
v16.17.0
OS
Alpine 3.16
Language
Python
Language Version
3.10.6
Other information
No response
The text was updated successfully, but these errors were encountered: