mirror of
https://github.com/inspec/inspec
synced 2024-12-22 11:03:11 +00:00
3cad7d1e78
Signed-off-by: Chris Redekop <chris.redekop@d2l.com>
9 lines
222 B
Ruby
9 lines
222 B
Ruby
describe aws_ec2(name: 'Example') do
|
|
it { should exist }
|
|
its('image_id') { should eq 'ami-0d729a60' }
|
|
its('instance_type') { should eq 't2.micro' }
|
|
end
|
|
|
|
describe aws_ec2('i-missing') do
|
|
it { should_not exist }
|
|
end
|