Open
Description
Description
Amazon S3 now supports conditional writes. The AWS provider should enable this option in the corresponding Terraform resources.
Blog: https://aws.amazon.com/about-aws/whats-new/2024/08/amazon-s3-conditional-writes/
Affected Resource(s) and/or Data Source(s)
aws_s3_object
aws_s3_bucket_object
Potential Terraform Configuration
resource "aws_s3_object" "example" {
### other configuration ###
if_none_match = "*"
}
References
- Depends on chore(deps): bump the aws-sdk-go group across 2 directories with 4 updates #38957
- https://aws.amazon.com/about-aws/whats-new/2024/08/amazon-s3-conditional-writes/
- https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html
Would you like to implement a fix?
None