mirror of
https://github.com/inspec/inspec
synced 2024-12-04 02:19:50 +00:00
46624396c7
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
11 lines
155 B
Ruby
11 lines
155 B
Ruby
cis_level = input('cis_level')
|
|
|
|
control 'control1' do
|
|
title 'title'
|
|
|
|
only_if { cis_level == 2 }
|
|
|
|
describe true do
|
|
it { should eq true}
|
|
end
|
|
end
|