Sha256: 710a25ae14fc287cb0ebbc762a99ce82905551c7001119fbee801a2dbc725a2c

Contents?: true

Size: 1.05 KB

Versions: 24

Compression:

Stored size: 1.05 KB

Contents

# meta-profile

The inspec.yml file in this profile shows how one can use dependencies
from non-local sources such as Git or an HTTP url. This feature can
be used to build up a environment-wide profile that is based on more
specific profiles managed by others.

InSpec supports multiple profile locations:

```
depends:
  # defaults to supermarket
  - name: hardening/ssh-hardening  
  # remote tar or zip file
  - name: os-hardening
    url: https://github.com/dev-sec/tests-os-hardening/archive/master.zip
  # git
  - git: https://github.com/dev-sec/ssl-benchmark.git
  - name: windows-patch-benchmark
    git: https://github.com/chris-rock/windows-patch-benchmark.git
  # Chef Compliance
  - name: linux
    compliance: base/linux
```

You could use those dependencies in your `exmaple.rb`:

```

include_controls 'hardening/ssh-hardening'
include_controls 'os-hardening'
include_controls 'ssl-benchmark'
include_controls 'linux'
include_controls 'windows-patch-benchmark'
```

Further details are described in our [InSpec Docs](http://inspec.io/docs/reference/profiles/)

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
inspec-1.22.0 examples/meta-profile/README.md
inspec-1.21.0 examples/meta-profile/README.md
inspec-1.20.0 examples/meta-profile/README.md
inspec-1.19.2 examples/meta-profile/README.md
inspec-1.19.1 examples/meta-profile/README.md
inspec-1.19.0 examples/meta-profile/README.md
inspec-1.18.0 examples/meta-profile/README.md
inspec-1.17.0 examples/meta-profile/README.md
inspec-1.16.1 examples/meta-profile/README.md
inspec-1.16.0 examples/meta-profile/README.md
inspec-1.15.0 examples/meta-profile/README.md
inspec-1.14.1 examples/meta-profile/README.md
inspec-1.14.0 examples/meta-profile/README.md
inspec-1.13.0 examples/meta-profile/README.md
inspec-1.12.0 examples/meta-profile/README.md
inspec-1.11.0 examples/meta-profile/README.md
inspec-1.10.0 examples/meta-profile/README.md
inspec-1.9.0 examples/meta-profile/README.md
inspec-1.8.0 examples/meta-profile/README.md
inspec-1.7.2 examples/meta-profile/README.md