mirror of
https://github.com/inspec/inspec
synced 2024-12-19 09:33:20 +00:00
6 lines
163 B
Ruby
6 lines
163 B
Ruby
|
describe aws_ec2(name: 'Example') do
|
||
|
it { should be_running }
|
||
|
its('image_id') { should eq 'ami-0d729a60' }
|
||
|
its('instance_type') { should eq 't2.micro' }
|
||
|
end
|