Skip to main content

aws_logs_metric_filters Resource

[edit on GitHub]

Use the aws_logs_metric_filters InSpec audit resource to test properties of multiple AWS CloudWatch logs metric filters.

For additional information, including details on parameters and properties, see the AWS documentation on AWS Logs MetricFilter.

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 a filter name exists.

describe aws_logs_metric_filters do
  it { should exist }
end

Parameters

This resource does not require any parameters.

Properties

filter_names
The name of the metric filter.
filter_patterns
A symbolic description of how CloudWatch Logs should interpret the data in each log event. For example, a log event can contain timestamps, IP addresses, strings, and so on. You use the filter pattern to specify what to look for in the log event message.
metric_transformations
The metric transformations.
creation_times
The creation time of the metric filter, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
log_group_names
The name of the log group.

Examples

Ensure a filter name is available.

describe aws_logs_metric_filters do
  its('filter_names') { should include 'FILTER_NAME' }
end

Ensure a log group name is available.

describe aws_logs_metric_filters do
    its('log_group_names') { should include 'LOG_GROUP_NAME' }
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 describe method returns at least one result.

exist

Use should to test that the entity exists.

describe aws_logs_metric_filters do
  it { should exist }
end

Use should_not to test the entity does not exist.

describe aws_logs_metric_filters do
  it { should_not exist }
end

be_available

Use should to check if the filter name is available.

describe aws_logs_metric_filters do
  it { should be_available }
end

AWS Permissions

Your Principal will need the CloudWatchLogs:Client:DescribeMetricFiltersResponse action with Effect set to Allow.

Was this page helpful?

×









Search Results