mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
Fixed Docs asking for instead of (#2933)
Signed-off-by: Bj Maldonado <bj@maldonado.io>
This commit is contained in:
parent
b0ce734035
commit
eff4de6784
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ An `aws_cloudwatch_alarm` resource block searches for a Cloudwatch Alarm, specif
|
||||||
|
|
||||||
# Look for a specific alarm
|
# Look for a specific alarm
|
||||||
aws_cloudwatch_alarm(
|
aws_cloudwatch_alarm(
|
||||||
metric: 'my-metric-name',
|
metric_name: 'my-metric-name',
|
||||||
metric_namespace: 'my-metric-namespace',
|
metric_namespace: 'my-metric-namespace',
|
||||||
) do
|
) do
|
||||||
it { should exist }
|
it { should exist }
|
||||||
|
|
|
@ -3,7 +3,7 @@ class AwsCloudwatchAlarm < Inspec.resource(1)
|
||||||
desc <<-EOD
|
desc <<-EOD
|
||||||
# Look for a specific alarm
|
# Look for a specific alarm
|
||||||
aws_cloudwatch_alarm(
|
aws_cloudwatch_alarm(
|
||||||
metric: 'my-metric-name',
|
metric_name: 'my-metric-name',
|
||||||
metric_namespace: 'my-metric-namespace',
|
metric_namespace: 'my-metric-namespace',
|
||||||
) do
|
) do
|
||||||
it { should exist }
|
it { should exist }
|
||||||
|
|
Loading…
Reference in a new issue