mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
fdd04e31c6
Adds aws_cloudwatch_alarm resource.
1.9 KiB
1.9 KiB
title |
---|
About the aws_cloudwatch_alarm Resource |
aws_cloudwatch_alarm
Use the aws_cloudwatch_alarm
InSpec audit resource to test properties of a single Cloudwatch Alarm.
Cloudwatch Alarms are currently identified using the metric name and metric namespace. Future work may allow other approaches to identifying alarms.
Syntax
An aws_cloudwatch_alarm
resource block searches for a Cloudwatch Alarm, specified by several search options. If more than one Alarm matches, an error occurs.
# Look for a specific alarm
aws_cloudwatch_alarm(
metric: 'my-metric-name',
metric_namespace: 'my-metric-namespace',
) do
it { should exist }
end
Examples
The following examples show how to use this InSpec audit resource.
Ensure an Alarm has at least one alarm action
describe aws_cloudwatch_alarm(
metric: 'my-metric-name',
metric_namespace: 'my-metric-namespace',
) do
its('alarm_actions') { should_not be_empty }
end
Matchers
exists
The control will pass if a Cloudwatch Alarm could be found. Use should_not if you expect zero matches.
# Expect good metric
describe aws_cloudwatch_alarm(
metric: 'good-metric',
metric_namespace: 'my-metric-namespace',
) do
it { should exist }
end
# Disallow alarms based on bad-metric
describe aws_cloudwatch_alarm(
metric: 'bed-metric',
metric_namespace: 'my-metric-namespace',
) do
it { should_not exist }
end
Properties
alarm_actions
alarm_actions
returns a list of strings. Each string is the ARN of an action that will be taken should the alarm be triggered.
# Ensure that the alarm has at least one action
describe aws_cloudwatch_alarm(
metric: 'bed-metric',
metric_namespace: 'my-metric-namespace',
) do
its('alarm_actions') { should_not be_empty }
end