We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Querying S3 object metadata, such as an object's encryption key, requires downloading object contents.
Steampipe version (steampipe -v) Steampipe v0.24.2
steampipe -v
Plugin version (steampipe plugin list) Example: v0.147.0
steampipe plugin list
To reproduce Execute a query such as select sse_kms_key_id from aws.aws_s3_object where bucket_name = 'yourbucket'.
select sse_kms_key_id from aws.aws_s3_object where bucket_name = 'yourbucket'
Expected behavior Steampipe retrieves only the object's metadata, not the object itself.
Additional context The current code does use getS3ObjectAttributes for some limited metadata keys, but calls getObject for most.
getS3ObjectAttributes
getObject
The text was updated successfully, but these errors were encountered:
JonMerlevede
Successfully merging a pull request may close this issue.
Describe the bug
Querying S3 object metadata, such as an object's encryption key, requires downloading object contents.
Steampipe version (
steampipe -v
)Steampipe v0.24.2
Plugin version (
steampipe plugin list
)Example: v0.147.0
To reproduce
Execute a query such as
select sse_kms_key_id from aws.aws_s3_object where bucket_name = 'yourbucket'
.Expected behavior
Steampipe retrieves only the object's metadata, not the object itself.
Additional context
The current code does use
getS3ObjectAttributes
for some limited metadata keys, but callsgetObject
for most.The text was updated successfully, but these errors were encountered: