S3 buckets can be in three states related to versioning:
- unversioned (default one)
- enabled
- suspended
When the S3 bucket is unversioned or has versioning suspended it means that a new version of an object overwrites an existing one in the S3
bucket.
It can lead to unintentional or intentional information loss.
Ask Yourself Whether
- The bucket stores information that require high availability.
There is a risk if you answered yes to any of those questions.
Recommended Secure Coding Practices
It’s recommended to enable S3 versioning and thus to have the possibility to retrieve and restore different versions of an object.
Sensitive Code Example
Versioning is disabled by default:
AWSTemplateFormatVersion: 2010-09-09
Resources:
S3Bucket:
Type: 'AWS::S3::Bucket' # Sensitive
Properties:
BucketName: "Example"
Compliant Solution
Versioning is enabled:
AWSTemplateFormatVersion: 2010-09-09
Resources:
S3Bucket:
Type: 'AWS::S3::Bucket' # Compliant
Properties:
BucketName: "Example"
VersioningConfiguration:
Status: Enabled
See