mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
79a45d0f3b
Fedora 24 is way EOL Signed-off-by: Tim Smith <tsmith@chef.io>
121 lines
2.5 KiB
YAML
121 lines
2.5 KiB
YAML
---
|
|
driver:
|
|
name: dokken
|
|
chef_version: 14.10.9
|
|
privileged: true # because Docker and SystemD/Upstart
|
|
|
|
transport:
|
|
name: dokken
|
|
|
|
provisioner:
|
|
name: dokken
|
|
client_rb:
|
|
data_collector.server_url: <%= ENV['COLLECTOR_URL'] %>
|
|
data_collector.token: <%= ENV['COLLECTOR_TOKEN'] %>
|
|
ssl_verify_mode: :verify_none
|
|
verify_api_cert: false
|
|
|
|
verifier:
|
|
name: inspec
|
|
sudo: true
|
|
attributes:
|
|
verifier_attribute: 'Attribute Override!'
|
|
|
|
platforms:
|
|
- name: amazonlinux
|
|
driver:
|
|
image: dokken/amazonlinux
|
|
pid_one_command: /sbin/init
|
|
|
|
- name: amazonlinux-2
|
|
driver:
|
|
image: dokken/amazonlinux-2
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
- name: centos-6
|
|
driver:
|
|
image: dokken/centos-6
|
|
pid_one_command: /sbin/init
|
|
|
|
- name: centos-7
|
|
driver:
|
|
image: dokken/centos-7
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
- name: debian-8
|
|
driver:
|
|
image: dokken/debian-8
|
|
pid_one_command: /bin/systemd
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: debian-9
|
|
driver:
|
|
image: dokken/debian-9
|
|
pid_one_command: /bin/systemd
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: fedora-29
|
|
driver:
|
|
image: dokken/fedora-29
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
- name: oracle-6.7
|
|
driver:
|
|
image: oraclelinux:6.7
|
|
|
|
- name: oracle-7.2
|
|
driver:
|
|
image: oraclelinux:7.2
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
- name: opensuse-leap
|
|
driver:
|
|
image: dokken/opensuse-leap-42
|
|
pid_one_command: /bin/systemd
|
|
|
|
- name: ubuntu-14.04
|
|
driver:
|
|
image: dokken/ubuntu-14.04
|
|
pid_one_command: /sbin/init
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: ubuntu-16.04
|
|
driver:
|
|
image: dokken/ubuntu-16.04
|
|
pid_one_command: /bin/systemd
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: ubuntu-18.04
|
|
driver:
|
|
image: dokken/ubuntu-18.04
|
|
pid_one_command: /bin/systemd
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
suites:
|
|
- name: default
|
|
run_list:
|
|
- recipe[os_prepare]
|
|
- recipe[audit]
|
|
verifier:
|
|
inspec_tests:
|
|
- test/integration/default
|
|
attributes:
|
|
audit:
|
|
attributes:
|
|
audit_attribute: 'Attribute Override!'
|
|
insecure: true
|
|
reporter: ['json-file','chef-automate']
|
|
fetcher: 'chef-automate'
|
|
json_file:
|
|
location: /tmp/json_export.json
|
|
profiles:
|
|
- name: integration
|
|
url: https://github.com/inspec/inspec-integration-profile/archive/master.zip
|
|
osprepare:
|
|
docker: true
|
|
application: false
|