hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.85k stars 9.2k forks source link

r/aws_s3_object: Append data to object in directory bucket #40265

Open ewbankkit opened 7 hours ago

ewbankkit commented 7 hours ago

Amazon S3 Express One Zone now supports the ability to append data to an object. For the first time, applications can add data to an existing object in S3.

Affected Resource(s) and/or Data Source(s)

Potential Terraform Configuration

resource "aws_s3_object" "example" {
  bucket  = aws_s3_bucket.example.bucket
  key     = "abc.txt"
  content = "some data to append"

  write_offset_bytes = 42
}
github-actions[bot] commented 7 hours ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue