2015-10-21 20:52:41 +00:00
|
|
|
---
|
|
|
|
driver:
|
2016-05-10 17:23:11 +00:00
|
|
|
name: dokken
|
2018-08-02 18:29:50 +00:00
|
|
|
chef_version: 14.3.37
|
2016-05-10 17:23:11 +00:00
|
|
|
privileged: true # because Docker and SystemD/Upstart
|
|
|
|
|
|
|
|
transport:
|
|
|
|
name: dokken
|
2015-10-21 20:52:41 +00:00
|
|
|
|
|
|
|
provisioner:
|
2016-05-10 17:23:11 +00:00
|
|
|
name: dokken
|
2018-10-11 18:07:37 +00:00
|
|
|
client_rb:
|
|
|
|
data_collector.server_url: <%= ENV['COLLECTOR_URL'] %>
|
|
|
|
data_collector.token: <%= ENV['COLLECTOR_TOKEN'] %>
|
|
|
|
ssl_verify_mode: :verify_none
|
|
|
|
verify_api_cert: false
|
2015-10-21 20:52:41 +00:00
|
|
|
|
|
|
|
verifier:
|
2015-10-26 18:29:58 +00:00
|
|
|
name: inspec
|
2015-10-22 11:57:29 +00:00
|
|
|
sudo: true
|
2018-09-25 19:53:26 +00:00
|
|
|
attributes:
|
|
|
|
verifier_attribute: 'Attribute Override!'
|
2015-10-21 20:52:41 +00:00
|
|
|
|
|
|
|
platforms:
|
2016-05-10 17:23:11 +00:00
|
|
|
- name: ubuntu-12.04
|
|
|
|
driver:
|
|
|
|
image: ubuntu:12.04
|
|
|
|
- name: ubuntu-14.04
|
|
|
|
driver:
|
|
|
|
image: ubuntu:14.04
|
|
|
|
- name: ubuntu-16.04
|
|
|
|
driver:
|
|
|
|
image: ubuntu:16.04
|
|
|
|
intermediate_instructions:
|
|
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
pid_one_command: /bin/systemd
|
|
|
|
- name: centos-6.6
|
|
|
|
driver:
|
|
|
|
image: centos:6.6
|
2016-08-04 12:59:48 +00:00
|
|
|
- name: centos-6.8
|
2016-05-10 17:23:11 +00:00
|
|
|
driver:
|
2016-08-04 12:59:48 +00:00
|
|
|
image: centos:6.8
|
2016-05-10 17:23:11 +00:00
|
|
|
intermediate_instructions:
|
|
|
|
- RUN yum install -y initscripts
|
|
|
|
- name: centos-7
|
|
|
|
driver:
|
|
|
|
image: centos:7
|
|
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
- name: oracle-6.7
|
|
|
|
driver:
|
|
|
|
image: oraclelinux:6.7
|
2016-08-04 12:59:48 +00:00
|
|
|
- name: oracle-7.2
|
2016-05-10 17:23:11 +00:00
|
|
|
driver:
|
2016-08-04 12:59:48 +00:00
|
|
|
image: oraclelinux:7.2
|
2016-05-10 17:23:11 +00:00
|
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
- name: debian-7
|
|
|
|
driver:
|
2016-08-04 12:59:48 +00:00
|
|
|
image: debian:7.11
|
2016-05-10 17:23:11 +00:00
|
|
|
intermediate_instructions:
|
|
|
|
- RUN /usr/bin/apt-get update
|
2016-08-04 12:59:48 +00:00
|
|
|
# running it within the chef recipe is too late :-(
|
|
|
|
- RUN /usr/bin/apt-get install -y procps lsb-release
|
2016-05-10 17:23:11 +00:00
|
|
|
- name: debian-8
|
|
|
|
driver:
|
2016-08-04 12:59:48 +00:00
|
|
|
image: debian:8.5
|
2016-05-10 17:23:11 +00:00
|
|
|
intermediate_instructions:
|
|
|
|
- RUN /usr/bin/apt-get update
|
2016-08-04 12:59:48 +00:00
|
|
|
# running it within the chef recipe is too late :-(
|
|
|
|
- RUN /usr/bin/apt-get install -y procps lsb-release
|
2016-05-10 17:23:11 +00:00
|
|
|
pid_one_command: /bin/systemd
|
2016-08-04 21:46:29 +00:00
|
|
|
- name: fedora-23
|
|
|
|
driver:
|
|
|
|
image: fedora:23
|
|
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
intermediate_instructions:
|
|
|
|
- RUN dnf install -y yum
|
|
|
|
- name: fedora-24
|
|
|
|
driver:
|
|
|
|
image: fedora:24
|
|
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
intermediate_instructions:
|
|
|
|
- RUN dnf install -y yum
|
2015-10-21 20:52:41 +00:00
|
|
|
|
|
|
|
suites:
|
2016-05-10 17:23:11 +00:00
|
|
|
- name: default
|
|
|
|
run_list:
|
2018-09-25 19:53:26 +00:00
|
|
|
- recipe[os_prepare]
|
|
|
|
- recipe[audit]
|
2016-05-10 17:23:11 +00:00
|
|
|
- recipe[apt]
|
|
|
|
- recipe[yum]
|
2018-09-25 19:53:26 +00:00
|
|
|
verifier:
|
|
|
|
inspec_tests:
|
|
|
|
- test/integration/default
|
2016-05-10 17:23:11 +00:00
|
|
|
attributes:
|
2018-09-25 19:53:26 +00:00
|
|
|
audit:
|
|
|
|
attributes:
|
|
|
|
audit_attribute: 'Attribute Override!'
|
2018-10-11 18:07:37 +00:00
|
|
|
insecure: true
|
|
|
|
reporter: ['json-file','chef-automate']
|
|
|
|
fetcher: 'chef-automate'
|
2018-09-25 19:53:26 +00:00
|
|
|
json_file:
|
|
|
|
location: /tmp/json_export.json
|
|
|
|
profiles:
|
|
|
|
- name: integration
|
|
|
|
url: https://github.com/inspec/inspec-integration-profile/archive/master.zip
|
2016-05-10 17:23:11 +00:00
|
|
|
osprepare:
|
|
|
|
docker: true
|
|
|
|
application: false
|