inspec/docs/resources/aws_cloudtrail_trails.md
Rony Xavier 3a786babcf Skeletal aws_cloudtrail_trails resource (#191)
Signed-off-by: Rony Xavier <rx294@nyu.edu>
2018-01-23 11:06:05 -05:00

2.2 KiB

title
About the aws_cloudtrail_trails Resource

aws_cloudtrail_trails

Use the aws_cloudtrail_trails InSpec audit resource to test properties of some or all AWS CloudTrail Trails.

AWS CloudTrail is a service that enables governance, compliance, operational auditing, and risk auditing of your AWS account. With CloudTrail, you can log, continuously monitor, and retain account activity related to actions across your AWS infrastructure. CloudTrail provides event history of your AWS account activity, including actions taken through the AWS Management Console, AWS SDKs, command line tools, and other AWS services. This event history simplifies security analysis, resource change tracking, and troubleshooting.

Each AWS CloudTrail Trails is uniquely identified by its trail name or trail arn.


Syntax

An aws_cloudtrail_trails resource block collects a group of CloudTrail Trails and then tests that group.

# Verify the number of CloudTrail Trails in the AWS account
describe aws_cloudtrail_trails do
  its('entries.count') { should cmp 10 }
end

Examples

The following examples show how to use this InSpec audit resource.

As this is the initial release of aws_cloudtrail_trails, its limited functionality precludes examples.


Matchers

exists

The control will pass if the filter returns at least one result. Use should_not if you expect zero matches.

# Verify that at least one CloudTrail Trail exists.
describe aws_cloudtrail_trails
  it { should exist }
end   

Properties

names

Provides a list of trail names for all CloudTrail Trails in the AWS account.

describe aws_cloudtrail_trails do
  its('names') { should include('trail-1') }
end

trail_arns

Provides a list of trail arns for all CloudTrail Trails in the AWS account.

describe aws_cloudtrail_trails do
  its('trail_arns') { should include('arn:aws:cloudtrail:us-east-1::trail/trail-1') }
end

entries

Provides access to the raw results of the query. This can be useful for checking counts and other advanced operations.

# Allow at most 100 CloudTrail Trails on the account
describe aws_cloudtrail_trails do
  its('entries.count') { should be <= 100}
end