mirror of
https://github.com/inspec/inspec
synced 2024-11-26 22:50:36 +00:00
20776b363d
* Add support for multiple descriptions for controls This adds the ability to specify multiple descriptions in controls. Example: ```ruby control 'my-control' do impact 1.0 title 'My control' desc 'A default description' desc 'rational', 'I need an example' describe file('/tmp') do it { should be_directory } end end ``` Many thanks to @jquick for helping me with the unit tests. * Remove unused `descriptions` method * Remove unused profile from test mocks * Respond to feedback Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com> |
||
---|---|---|
.. | ||
custom-resource | ||
inheritance | ||
kitchen-ansible | ||
kitchen-chef | ||
kitchen-puppet | ||
meta-profile | ||
profile | ||
profile-attribute | ||
profile-aws | ||
profile-azure | ||
profile-sensitive | ||
profile-attribute.yml | ||
README.md |
InSpec examples
This directory contains multiple examples that explain the usage of the InSpec:
kitchen-chef
Test-Kitchen with Chef and InSpeckitchen-puppet
Test-Kitchen with Puppet and InSpeckitchen-ansible
Test-Kitchen with Ansible and InSpecprofile
Example of an InSpec profile