inspec/docs/profiles.rst

138 lines
4 KiB
ReStructuredText
Raw Normal View History

2015-12-14 13:17:31 +00:00
=====================================================
InSpec Profiles
=====================================================
InSpec supports the creation of complex test and compliance profiles, which organize controls to support dependency management and code re-use. These profiles are standalone structures with their own distribution and execution flow.
2015-12-14 13:17:31 +00:00
2015-12-28 11:24:46 +00:00
InSpec profile structure
2015-12-14 13:17:31 +00:00
-----------------------------------------------------
2015-12-28 11:24:46 +00:00
To create a new profile just place the files according to the following structure:
2015-12-14 13:17:31 +00:00
.. code-block:: bash
$ tree examples/profile
examples/profile
├── README.md
├── controls
│   ├── example.rb
│   └── gordon.rb
2015-12-14 13:17:31 +00:00
├── libraries
│   └── gordon_config.rb
2015-12-17 12:56:31 +00:00
└── inspec.yml
2015-12-14 13:17:31 +00:00
2015-12-17 12:56:31 +00:00
* `inspec.yml` - includes the profile description (required)
2015-12-28 11:24:46 +00:00
* `controls` - a folder which contains all tests (required)
* `libraries` - a folder which contains InSpec resource extensions (optional)
* `README.md` - a best-practice readme to each explain the profile and its scope
2015-12-14 13:17:31 +00:00
2015-12-28 11:24:46 +00:00
InSpec profile manifest
2015-12-14 17:06:44 +00:00
-----------------------------------------------------
2015-12-17 12:56:31 +00:00
Each profile has a manifest file `inspec.yml`. It looks as follows
2015-12-14 17:06:44 +00:00
.. code-block:: yaml
name: ssh
2015-12-14 17:06:44 +00:00
title: Basic SSH
maintainer: Chef Software, Inc.
copyright: Chef Software, Inc.
copyright_email: support@chef.io
license: Proprietary, All rights reserved
summary: Verify that SSH Server and SSH Client are configured securely
version: 1.0.0
A manifest description may contain the following values:
* `name` - Identifier of the profile (required)
* `title` - Human-readable name of the profile (optional)
* `maintainer` - Name of the profile maintainer (optional)
* `copyright` - Copyright holder (optional)
* `copyright_email` - Support contact for profile (optional)
* `license` - License of the profile (optional)
* `summary` - One-line summary of the profile (optional)
* `description` - Description of the profile (optional)
* `version` - Version of the profile (optional)
2015-12-28 11:24:46 +00:00
InSpec profile verification
2015-12-14 13:17:31 +00:00
-----------------------------------------------------
InSpec ships with a verification command that verifies the implementation of a profile
$ inspec check examples/profile
2015-12-28 11:24:46 +00:00
InSpec profile archive
2015-12-14 13:17:31 +00:00
-----------------------------------------------------
Profiles are composed of multiple files. This hinders easy distribution of a profile. InSpec solves the problem by offering to collect all files in one archive.
The InSpec profile archive format aims for flexibility and reuse of standard and common technologies:
* tar and gzip (default)
* zip
* HTTP
This should enable third-parties to easily build InSpec profile archives:
* InSpec archives MUST be named with the stanard suffix
2015-12-14 14:29:09 +00:00
* InSpec archives MUST be a tar.gz or zip formatted file
2015-12-14 13:17:31 +00:00
* InSpec archives MUST have no duplicate entries
* InSpec archives MAY be compressed with gzip, bzip2, or xz.
2015-12-28 11:24:46 +00:00
InSpec is able to create profile archive for you. By default it generates a tar-file on Unix and zip on Windows or Mac.
2015-12-14 13:17:31 +00:00
.. code-block:: bash
2015-12-14 14:29:09 +00:00
# will generate a example-profile.tar.gz
2015-12-14 13:17:31 +00:00
$ inspec archive examples/profile
# will generate a example-profile.zip
2015-12-28 11:24:46 +00:00
$ inspec archive examples/profile --zip
Profile inheritance
-----------------------------------------------------
**Include controls of existing profile**
The `include_controls` keyword allows you to import all rules from an existing profile. This can be easily extended with additional rules.
.. code-block:: bash
include_controls 'cis-level-1' do
control "cis-fs-2.7" do
impact 1.0
...
end
**Inherit from a profile, but skip some rules**
Sometimes, not all requirements can be fullfiled for a legacy application. To manage the derivation, you can skip certain controls with `skip_control`.
.. code-block:: bash
include_controls 'cis-level-1' do
skip_control "cis-fs-2.1"
skip_control "cis-fs-2.2"
end
**Load specific controls from another profile**
.. code-block:: bash
require_controls 'cis-level-1' do
control "cis-fs-2.1"
control "cis-fs-2.2"
end