S3 bucket versioning is like the trash function in operating systems. It saves the day when you accidentally remove something that should not be removed. It gets even better! Versioning allows you to restore the previous version when you overwrite a file that should not be overwritten.
Table of Contents
In this article, I show you how to enable versioning of an S3 bucket using Terraform. Of course, keeping the old version and removed files costs money and, most likely, is unnecessary, so we should remove the old versions after some time. I will show you how to do it too!
We will need two things:
- the name of the bucket
- the number of days after which we want to remove the old versions
When we have all of that, we can define the bucket in Terraform configuration. In this example, I enable versioning of bucket called my_lovely_bucket
. I want to remove the old versions after seven days:
resource "aws_s3_bucket" "my_lovely_bucket" {
bucket = "my_lovely_bucket"
acl = "private"
versioning {
enabled = true
}
lifecycle_rule {
enabled = true
noncurrent_version_expiration {
days = 7
}
}
}
Get Weekly AI Implementation Insights
Join engineering leaders who receive my analysis of common AI production failures and how to prevent them. No fluff, just actionable techniques.