Skip to content

Commit 3328007

Browse files
authoredOct 19, 2023
fix: Don't error on S3 buckets with Object Lock disabled (aws_s3_bucket_object_lock_configurations ) (#14726)
#### Summary When syncing `aws_s3_bucket_object_lock_configurations` we call [GetObjectLockConfiguration](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectLockConfiguration.html) on every bucket in an AWS account. However, unless Object Lock is enabled on an S3 bucket this endpoint will return a 404 which Cloudquery interprets as an error. As this is an optional feature that I don't think most people will have enabled I believe cloudquery shouldn't treat this as an error. ``` 2:19PM ERR table resolver finished with error error="operation error S3: GetObjectLockConfiguration, https response error StatusCode: 404, RequestID: (redacted), HostID: (redacted), api error ObjectLockConfigurationNotFoundError: Object Lock configuration does not exist for this bucket" client=(redacted) module=aws-src table=aws_s3_bucket_object_lock_configurations` ``` Part of #14652
1 parent 1c7ee1d commit 3328007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎plugins/source/aws/resources/services/s3/bucket_object_lock_configurations.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func fetchS3BucketObjectLockConfigurations(ctx context.Context, meta schema.Clie
4343
o.Region = region.Value
4444
})
4545
if err != nil {
46-
if client.IsAWSError(err, "NoSuchBucket") {
46+
if client.IsAWSError(err, "NoSuchBucket", "ObjectLockConfigurationNotFound") {
4747
return nil
4848
}
4949
return err

0 commit comments

Comments
 (0)
Please sign in to comment.