Skip to main content

aws_s3_bucket_objects Resource

Use the aws_s3_bucket_objects InSpec audit resource to test properties of multiple AWS S3 bucket objects.

Amazon S3 is an object store that uses unique key-values to store as many objects as you want.

bucket_name (required)

The bucket name.

For additional information, including details on parameters and properties, see the AWS documentation on S3 Buckets.

Install

This resource is available in the Chef InSpec AWS resource pack.

For information on configuring your AWS environment for Chef InSpec and creating an InSpec profile that uses the InSpec AWS resource pack, see the Chef InSpec documentation on the AWS cloud platform.

Syntax

Ensure that a bucket exists.

describe aws_s3_bucket_objects(bucket_name: 'BUCKET_NAME') do
  it { should exist }
end

Parameters

bucket_name (required)

The bucket name.

Properties

contents
A list of the metadata about each object returned.

Field: contents

contents_keys
A list of the object names.

Field: contents (key)

contents_last_modified
A list of creation date of the objects.

Field: contents (last_modified)

contents_sizes
A list of the sizes of the objects in bytes.

Field: contents (size)

contents_etags
A list of the entity tags which are a hash of the objects.

Field: contents (etag)

contents_storage_classes
A list of the classes of storage used to store the objects.

Field: contents (storage_class)

contents_owners
A list of the owners of the objects.

Field: contents (owners)

names
The bucket name.

Field: name

prefixes
A list of keys that begin with the indicated prefix.

Field: prefix

delimiters
A list of delimiters, which are a character used to group keys.

Field: delimiter

max_keys
The maximum number of keys returned in the response. By default the action returns up to 1,000 key names.

Field: max_keys

common_prefixes
A list of containers for the specified common prefix.

Field: common_prefixes (prefix)

encoding_types
A list of the encoding types used by Amazon S3 to encode object key names in the XML response.

Field: encoding_type

key_counts
The number of keys returned with this request.

Field: key_count

Examples

Ensure whether the bucket is truncated.

describe aws_s3_bucket_objects(bucket_name: 'BUCKET_NAME') do
  its ('is_truncated') { should include true }
end

Verify the bucket name.

describe aws_s3_bucket_objects(bucket_name: 'BUCKET_NAME') do
  its ('names') { should include "BUCKET_NAME" }
end

Ensure an object name exists.

describe aws_s3_bucket_objects(bucket_name: 'BUCKET_NAME') do
    its('contents_keys') { should include 'OBJECT_NAME' }
end

Ensure an object has a last modified date.

describe aws_s3_bucket_objects(bucket_name: 'BUCKET_NAME') do
    its('contents_last_modified') { should include  Time.parse("2021-05-05 06:22:04.000000000 +0000") }
end

Ensure a storage class of an object exists.

describe aws_s3_bucket_objects(bucket_name: 'BUCKET_NAME') do
    its('contents_storage_classes') { should include "STANDARD") }
end

Verify the key counts of a bucket.

describe aws_s3_bucket_objects(bucket_name: 'BUCKET_NAME') do
    its('key_counts') { should include 2 }
end

Matchers

For a full list of available matchers, see our Universal Matchers page.

The controls will pass if the list method returns at least one result.

exist

Use should to test that the entity exists.

describe aws_s3_bucket_objects(bucket_name: 'BUCKET_NAME') do
  it { should exist }
end

Use should_not to test the entity does not exist.

describe aws_s3_bucket_objects(bucket_name: 'BUCKET_NAME') do
  it { should_not exist }
end

AWS Permissions

Your Principal will need the S3:Client:ListObjectsV2Output action with Effect set to Allow.

Edit this page on GitHub

Thank you for your feedback!

×









Search Results