90 lines
1.8 KiB
YAML
90 lines
1.8 KiB
YAML
---
|
|
dependency:
|
|
name: galaxy
|
|
driver:
|
|
name: docker
|
|
#lint:
|
|
# name: yamllint
|
|
lint:
|
|
name: yamllint
|
|
options:
|
|
config-data:
|
|
ignore: .virtualenv
|
|
platforms:
|
|
#- name: wazuh_server_centos7
|
|
# image: milcom/centos7-systemd
|
|
# networks:
|
|
# - name: wazuh
|
|
# privileged: true
|
|
# groups:
|
|
# - manager
|
|
- name: wazuh_agent_bionic
|
|
image: ubuntu:bionic
|
|
networks:
|
|
- name: wazuh
|
|
groups:
|
|
- agent
|
|
#- name: wazuh_agent_xenial
|
|
# image: solita/ubuntu-systemd:xenial
|
|
# privileged: true
|
|
# command: /sbin/init
|
|
# networks:
|
|
# - name: wazuh
|
|
# groups:
|
|
# - agent
|
|
#- name: wazuh_agent_trusty
|
|
# image: ubuntu:trusty
|
|
# networks:
|
|
# - name: wazuh
|
|
# groups:
|
|
# - agent
|
|
#- name: wazuh_agent_centos6
|
|
# image: centos:6
|
|
# networks:
|
|
# - name: wazuh
|
|
# groups:
|
|
# - agent
|
|
#- name: wazuh_agent_centos7
|
|
# image: milcom/centos7-systemd
|
|
# privileged: true
|
|
# networks:
|
|
# - name: wazuh
|
|
# groups:
|
|
# - agent
|
|
provisioner:
|
|
name: ansible
|
|
config_options:
|
|
defaults:
|
|
hash_behaviour: merge
|
|
playbooks:
|
|
docker:
|
|
create: ../default/create.yml
|
|
destroy: ../default/destroy.yml
|
|
env:
|
|
ANSIBLE_ROLES_PATH: ../../roles
|
|
inventory:
|
|
group_vars:
|
|
agent:
|
|
api_pass: password
|
|
wazuh_managers:
|
|
- address: "{{ wazuh_manager_ip }}"
|
|
port: 1514
|
|
protocol: tcp
|
|
api_port: 55000
|
|
api_proto: 'http'
|
|
api_user: null
|
|
wazuh_agent_authd:
|
|
enable: true
|
|
port: 1515
|
|
ssl_agent_ca: null
|
|
ssl_agent_cert: null
|
|
ssl_agent_key: null
|
|
ssl_auto_negotiate: 'no'
|
|
lint:
|
|
name: ansible-lint
|
|
enabled: true
|
|
verifier:
|
|
name: testinfra
|
|
lint:
|
|
name: flake8
|