aws_s3_access_point Resource
Use the aws_s3_access_point
InSpec audit resource to test properties of a single specific S3 bucket resource.
For additional information, including details on parameters and properties, see the AWS documentation on AWS API Metric..
Installation
This resource is available in the Chef InSpec AWS resource pack.
See the Chef InSpec documentation on cloud platforms for information on configuring your AWS environment for InSpec and creating an InSpec profile that uses the InSpec AWS resource pack.
Syntax
Ensure that the base path mapping exists.
describe aws_s3_access_point(bucket_name: 'BUCKET_NAME', metrics_id: 'METRICS_ID') do
it { should exist }
end
Parameters
domain_name
(required)The name of the bucket containing the metrics configuration to retrieve.
metrics_id
(required)The ID used to identify the metrics configuration.
Properties
id
- The ID used to identify the metrics configuration.
Field:
id
filter.access_point_arn
- The access point ARN used when evaluating a metrics filter.
Field:
filter.access_point_arn
filter.and.access_point_arn
- The access point ARN used when evaluating an AND predicate.
Field:
filter.and.access_point_arn
Examples
Ensure that the id is available.
describe aws_s3_access_point(bucket_name: 'BUCKET_NAME', metrics_id: 'METRICS_ID') do
its('id') { should eq 'METRICS_ID' }
end
Ensure that access point arn is available.
describe aws_s3_access_point(bucket_name: 'BUCKET_NAME', metrics_id: 'METRICS_ID') do
its('filter.access_point_arn') { should eq 'AccessPointArn' }
end
Matchers
This InSpec audit resource has the following special matchers. For a full list of available matchers, please visit our Universal Matchers page.
The controls will pass if the get
method returns at least one result.
exist
Use should
to test that the entity exists.
describe aws_s3_access_point(bucket_name: 'BUCKET_NAME', metrics_id: 'METRICS_ID') do
it { should exist }
end
Use should_not
to test the entity does not exist.
describe aws_s3_access_point(bucket_name: 'dummy', metrics_id: 'dummy') do
it { should_not exist }
end
be_available
Use should
to check if the entity is available.
describe aws_s3_access_point(bucket_name: 'BUCKET_NAME', metrics_id: 'METRICS_ID') do
it { should be_available }
end
AWS Permissions
Your Principal will need the S3:Client:GetBucketMetricsConfigurationOutput
action with Effect
set to Allow
.