2020-03-18 18:46:47 -04:00
|
|
|
---
|
|
|
|
description: |
|
|
|
|
The inspec Packer provisioner allows inspec profiles to be run to test the
|
|
|
|
machine.
|
|
|
|
page_title: InSpec - Provisioners
|
2020-04-02 19:39:47 -04:00
|
|
|
sidebar_title: InSpec
|
2020-03-18 18:46:47 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
# InSpec Provisioner
|
|
|
|
|
|
|
|
Type: `inspec`
|
|
|
|
|
|
|
|
The `inspec` Packer provisioner runs InSpec profiles. It dynamically creates a
|
|
|
|
target configured to use SSH, runs an SSH server, executes `inspec exec`, and
|
|
|
|
marshals InSpec tests through the SSH server to the machine being provisioned
|
|
|
|
by Packer.
|
|
|
|
|
2020-12-04 16:00:53 -05:00
|
|
|
-> **Note:** Inspec is required to be installed on the host machine and
|
|
|
|
available in it's corresponding path. It is not required to be installed
|
2020-08-24 12:39:57 -04:00
|
|
|
on the provisioned image.
|
|
|
|
|
2020-03-18 18:46:47 -04:00
|
|
|
## Basic Example
|
|
|
|
|
|
|
|
This is a fully functional template that will test an image on DigitalOcean.
|
|
|
|
Replace the mock `api_token` value with your own.
|
|
|
|
|
2020-08-13 11:23:56 -04:00
|
|
|
<Tabs>
|
|
|
|
<Tab heading="JSON">
|
|
|
|
|
2020-03-18 18:46:47 -04:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"provisioners": [
|
|
|
|
{
|
|
|
|
"type": "inspec",
|
|
|
|
"profile": "https://github.com/dev-sec/linux-baseline"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
|
|
|
|
"builders": [
|
|
|
|
{
|
|
|
|
"type": "digitalocean",
|
|
|
|
"api_token": "<digital ocean api token>",
|
|
|
|
"image": "ubuntu-14-04-x64",
|
|
|
|
"region": "sfo1"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-13 11:23:56 -04:00
|
|
|
</Tab>
|
|
|
|
<Tab heading="HCL2">
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
source "digitalocean" "example"{
|
|
|
|
api_token = "<digital ocean api token>"
|
|
|
|
image = "ubuntu-14-04-x64"
|
|
|
|
region = "sfo1"
|
|
|
|
}
|
|
|
|
|
|
|
|
build {
|
|
|
|
sources = [
|
|
|
|
"source.digitalocean.example"
|
|
|
|
]
|
|
|
|
provisioner "inspec" {
|
|
|
|
profile = "https://github.com/dev-sec/linux-baseline"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
</Tab>
|
|
|
|
</Tabs>
|
|
|
|
|
2020-03-18 18:46:47 -04:00
|
|
|
## Configuration Reference
|
|
|
|
|
|
|
|
Required Parameters:
|
|
|
|
|
|
|
|
- `profile` (string) - The profile to be executed by InSpec.
|
|
|
|
|
|
|
|
Optional Parameters:
|
|
|
|
|
|
|
|
- `inspec_env_vars` (array of strings) - Environment variables to set before
|
|
|
|
running InSpec. Usage example:
|
|
|
|
|
2020-12-04 17:44:30 -05:00
|
|
|
<Tabs>
|
2020-12-04 16:00:53 -05:00
|
|
|
<Tab heading="JSON">
|
2020-08-13 11:23:56 -04:00
|
|
|
|
2020-12-04 17:44:30 -05:00
|
|
|
```json
|
|
|
|
"inspec_env_vars": [ "FOO=bar" ]
|
|
|
|
```
|
2020-03-18 18:46:47 -04:00
|
|
|
|
2020-12-04 17:44:30 -05:00
|
|
|
</Tab>
|
2020-12-04 16:00:53 -05:00
|
|
|
<Tab heading="HCL2">
|
2020-08-13 11:23:56 -04:00
|
|
|
|
2020-12-04 17:44:30 -05:00
|
|
|
```hcl
|
|
|
|
inspec_env_vars = [ "FOO=bar" ]
|
|
|
|
```
|
2020-08-13 11:23:56 -04:00
|
|
|
|
2020-12-04 17:44:30 -05:00
|
|
|
</Tab>
|
2020-12-04 16:00:53 -05:00
|
|
|
</Tabs>
|
2020-08-13 11:23:56 -04:00
|
|
|
|
2020-03-18 18:46:47 -04:00
|
|
|
- `command` (string) - The command to invoke InSpec. Defaults to `inspec`.
|
|
|
|
|
|
|
|
- `extra_arguments` (array of strings) - Extra arguments to pass to InSpec.
|
|
|
|
These arguments _will not_ be passed through a shell and arguments should
|
|
|
|
not be quoted. Usage example:
|
|
|
|
|
2020-12-04 17:44:30 -05:00
|
|
|
<Tabs>
|
2020-12-04 16:00:53 -05:00
|
|
|
<Tab heading="JSON">
|
2020-08-13 11:23:56 -04:00
|
|
|
|
2020-12-04 17:44:30 -05:00
|
|
|
```json
|
|
|
|
"extra_arguments": [ "--sudo", "--reporter", "json" ]
|
|
|
|
```
|
2020-12-04 16:00:53 -05:00
|
|
|
|
2020-12-04 17:44:30 -05:00
|
|
|
</Tab>
|
2020-12-04 16:00:53 -05:00
|
|
|
<Tab heading="HCL2">
|
2020-08-13 11:23:56 -04:00
|
|
|
|
2020-12-04 17:44:30 -05:00
|
|
|
```hcl
|
|
|
|
extra_arguments = [ "--sudo", "--reporter", "json" ]
|
|
|
|
```
|
2020-08-13 11:23:56 -04:00
|
|
|
|
2020-12-04 17:44:30 -05:00
|
|
|
</Tab>
|
2020-12-04 16:00:53 -05:00
|
|
|
</Tabs>
|
2020-03-18 18:46:47 -04:00
|
|
|
|
|
|
|
- `attributes` (array of strings) - Attribute Files used by InSpec which will
|
|
|
|
be passed to the `--input-file` argument of the `inspec` command when this
|
|
|
|
provisioner runs InSpec. Specify this if you want a different location.
|
|
|
|
Note using also `"--input-file"` in `extra_arguments` will override this
|
|
|
|
setting.
|
|
|
|
|
|
|
|
- `attributes_directory` (string) - The directory in which to place the
|
|
|
|
temporary generated InSpec Attributes file. By default, this is the
|
|
|
|
system-specific temporary file location. The fully-qualified name of this
|
|
|
|
temporary file will be passed to the `--input-file` argument of the `inspec`
|
|
|
|
command when this provisioner runs InSpec. Specify this if you want a
|
|
|
|
different location.
|
|
|
|
|
|
|
|
- `backend` (string) - Backend used by InSpec for connection. Defaults to
|
|
|
|
SSH.
|
|
|
|
|
|
|
|
- `host` (string) - Host used for by InSpec for connection. Defaults to
|
|
|
|
localhost.
|
|
|
|
|
|
|
|
- `local_port` (uint) - The port on which to attempt to listen for SSH
|
|
|
|
connections. This value is a starting point. The provisioner will attempt to
|
|
|
|
listen for SSH connections on the first available of ten ports, starting at
|
|
|
|
`local_port`. A system-chosen port is used when `local_port` is missing or
|
|
|
|
empty.
|
|
|
|
|
|
|
|
- `ssh_host_key_file` (string) - The SSH key that will be used to run the SSH
|
|
|
|
server on the host machine to forward commands to the target machine.
|
|
|
|
InSpec connects to this server and will validate the identity of the server
|
|
|
|
using the system known_hosts. The default behavior is to generate and use
|
|
|
|
a onetime key.
|
|
|
|
|
|
|
|
- `ssh_authorized_key_file` (string) - The SSH public key of the InSpec
|
|
|
|
`ssh_user`. The default behavior is to generate and use a onetime key. If
|
|
|
|
this key is generated, the corresponding private key is passed to `inspec`
|
|
|
|
command with the `-i inspec_ssh_private_key_file` option.
|
|
|
|
|
|
|
|
- `user` (string) - The `--user` to use. Defaults to the user running Packer.
|
|
|
|
|
2020-03-23 20:02:12 -04:00
|
|
|
@include 'provisioners/common-config.mdx'
|
2020-03-18 18:46:47 -04:00
|
|
|
|
2020-05-20 15:43:41 -04:00
|
|
|
## Accepting the InSpec license
|
|
|
|
|
|
|
|
Chef InSpec requires accepting the license before starting to use the tool.
|
|
|
|
This can be done via `inspec_env_vars` in the template:
|
|
|
|
|
2020-08-13 11:23:56 -04:00
|
|
|
<Tabs>
|
|
|
|
<Tab heading="JSON">
|
|
|
|
|
2020-05-29 17:12:05 -04:00
|
|
|
```json
|
2020-08-13 11:23:56 -04:00
|
|
|
"provisioners": [
|
|
|
|
{
|
|
|
|
"type": "inspec",
|
|
|
|
"inspec_env_vars": [ "CHEF_LICENSE=accept"],
|
|
|
|
"profile": "https://github.com/dev-sec/linux-baseline"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
</Tab>
|
|
|
|
<Tab heading="HCL2">
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
provisioner "inspec" {
|
|
|
|
inspec_env_vars = [ "CHEF_LICENSE=accept"]
|
|
|
|
profile = "https://github.com/dev-sec/linux-baseline"
|
|
|
|
}
|
2020-05-20 15:43:41 -04:00
|
|
|
```
|
|
|
|
|
2020-08-13 11:23:56 -04:00
|
|
|
</Tab>
|
|
|
|
</Tabs>
|
|
|
|
|
2020-05-20 15:43:41 -04:00
|
|
|
See their [official docs](https://docs.chef.io/chef_license_accept/) to learn other ways to accept the license.
|
|
|
|
|
2020-03-18 18:46:47 -04:00
|
|
|
## Default Extra Variables
|
|
|
|
|
|
|
|
In addition to being able to specify extra arguments using the
|
|
|
|
`extra_arguments` configuration, the provisioner automatically defines certain
|
|
|
|
commonly useful InSpec Attributes:
|
|
|
|
|
|
|
|
- `packer_build_name` is set to the name of the build that Packer is running.
|
|
|
|
This is most useful when Packer is making multiple builds and you want to
|
|
|
|
distinguish them slightly when using a common profile.
|
|
|
|
|
|
|
|
- `packer_builder_type` is the type of the builder that was used to create
|
|
|
|
the machine that the script is running on. This is useful if you want to
|
|
|
|
run only certain parts of the profile on systems built with certain
|
|
|
|
builders.
|
|
|
|
|
|
|
|
## Debugging
|
|
|
|
|
|
|
|
To debug underlying issues with InSpec, add `"-l"` to `"extra_arguments"` to
|
|
|
|
enable verbose logging.
|
|
|
|
|
2020-08-13 11:23:56 -04:00
|
|
|
<Tabs>
|
|
|
|
<Tab heading="JSON">
|
|
|
|
|
2020-03-18 18:46:47 -04:00
|
|
|
```json
|
|
|
|
"extra_arguments": ["-l", "debug"]
|
|
|
|
```
|
2020-08-13 11:23:56 -04:00
|
|
|
|
|
|
|
</Tab>
|
|
|
|
<Tab heading="HCL2">
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
extra_arguments = ["-l", "debug"]
|
|
|
|
```
|
|
|
|
|
|
|
|
</Tab>
|
|
|
|
</Tabs>
|