Forge Home

wazuh

Install and configure Wazuh-HIDS client and server

109,821 downloads

76 latest version

4.7 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 4.7.3 (latest)
  • 4.7.2
  • 4.7.1
  • 4.7.0
  • 4.6.0
  • 4.5.4
  • 4.5.3
  • 4.5.2
  • 4.5.1
  • 4.5.0
  • 4.4.5
  • 4.4.4
  • 4.4.3
  • 4.4.2
  • 4.4.1
  • 4.4.0
  • 4.3.11
  • 4.3.10
  • 4.3.9
  • 4.3.8
  • 4.3.7
  • 4.3.6
  • 4.3.5
  • 4.3.4
  • 4.3.3
  • 4.3.2
  • 4.3.1
  • 4.3.0 (deleted)
  • 4.3.0-1
  • 4.2.7
  • 4.2.6
  • 4.2.5
  • 4.2.4
  • 4.2.3
  • 4.2.2
  • 4.2.1
  • 4.2.0
  • 4.1.5 (deleted)
  • 4.1.5-2
  • 4.1.5-1 (deleted)
  • 4.0.4
  • 3.13.0
  • 3.12.3
  • 3.12.2
  • 3.12.0
  • 3.11.4
  • 3.11.3
  • 3.11.2
  • 3.11.1
  • 3.11.0
  • 3.10.2
  • 3.10.0
  • 3.9.5 (deleted)
  • 3.9.5-1
  • 3.9.4 (deleted)
  • 3.9.4-1
  • 3.9.3
  • 3.9.2
  • 3.9.1 (deleted)
  • 3.9.1-1
  • 3.8.2
  • 3.8.1
  • 3.8.0+0
  • 3.8.0 (deleted)
  • 3.8.0-1 (deleted)
  • 3.7.2
  • 3.7.1 (deleted)
  • 3.7.0 (deleted)
  • 2.0.22
  • 2.0.21
released Mar 4th 2024
This version is compatible with:
  • Puppet Enterprise 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x
  • Puppet >= 6.0.0 < 7.0.0
  • , , , , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'wazuh-wazuh', '4.7.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add wazuh-wazuh
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install wazuh-wazuh --version 4.7.3

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: ossec, hids, wazuh, 47

Documentation

wazuh/wazuh — version 4.7.3 Mar 4th 2024

Wazuh Puppet module

Slack Email Documentation Web Kitchen tests for Wazuh Puppet

This module installs and configure Wazuh agent and manager.

Documentation

Directory structure

wazuh-puppet/
├── CHANGELOG.md
├── checksums.json
├── data
│   └── common.yaml
├── files
│   └── ossec-logrotate.te
├── Gemfile
├── kitchen
│   ├── chefignore
│   ├── clean.sh
│   ├── Gemfile
│   ├── hieradata
│   │   ├── common.yaml
│   │   └── roles
│   │       └── default.yaml
│   ├── kitchen.yml
│   ├── manifests
│   │   └── site.pp.template
│   ├── Puppetfile
│   ├── README.md
│   ├── run.sh
│   └── test
│       └── integration
│           ├── agent
│           │   └── agent_spec.rb
│           └── mngr
│               └── manager_spec.rb
├── LICENSE.txt
├── manifests
│   ├── activeresponse.pp
│   ├── addlog.pp
│   ├── agent.pp
│   ├── audit.pp
│   ├── certificates.pp
│   ├── command.pp
│   ├── dashboard.pp
│   ├── email_alert.pp
│   ├── filebeat_oss.pp
│   ├── indexer.pp
│   ├── init.pp
│   ├── integration.pp
│   ├── manager.pp
│   ├── params_agent.pp
│   ├── params_manager.pp
│   ├── repo_elastic_oss.pp
│   ├── repo.pp
│   ├── reports.pp
│   └── tests.pp
├── metadata.json
├── Rakefile
├── README.md
├── spec
│   ├── classes
│   │   ├── client_spec.rb
│   │   ├── init_spec.rb
│   │   └── server_spec.rb
│   └── spec_helper.rb
├── templates
│   ├── default_commands.erb
│   ├── filebeat_oss_yml.erb
│   ├── fragments
│   │   ├── _activeresponse.erb
│   │   ├── _auth.erb
│   │   ├── _cluster.erb
│   │   ├── _command.erb
│   │   ├── _default_activeresponse.erb
│   │   ├── _email_alert.erb
│   │   ├── _integration.erb
│   │   ├── _labels.erb
│   │   ├── _localfile.erb
│   │   ├── _localfile_generation.erb
│   │   ├── _reports.erb
│   │   ├── _rootcheck.erb
│   │   ├── _ruleset.erb
│   │   ├── _sca.erb
│   │   ├── _syscheck.erb
│   │   ├── _syslog_output.erb
│   │   ├── _vulnerability_detector.erb
│   │   ├── _wodle_cis_cat.erb
│   │   ├── _wodle_openscap.erb
│   │   ├── _wodle_osquery.erb
│   │   └── _wodle_syscollector.erb
│   ├── disabledlog4j_options.erb
│   ├── local_decoder.xml.erb
│   ├── local_rules.xml.erb
│   ├── ossec_shared_agent.conf.erb
│   ├── process_list.erb
│   ├── wazuh_agent.conf.erb
│   ├── wazuh_api_yml.erb
│   ├── wazuh_config_yml.erb
│   ├── wazuh_manager.conf.erb
│   └── wazuh_yml.erb
└── VERSION

Branches

  • master branch contains the latest code, be aware of possible bugs on this branch.
  • stable branch on correspond to the last Wazuh-Puppet stable version.

Contribute

If you want to contribute to our project please don't hesitate to send a pull request. You can also join our users mailing list or the Wazuh Slack community channel to ask questions and participate in discussions.

Credits and thank you

This Puppet module has been authored by Nicolas Zin, and updated by Jonathan Gazeley and Michael Porter. Wazuh has forked it with the purpose of maintaining it. Thank you to the authors for the contribution.

License and copyright

WAZUH Copyright (C) 2015, Wazuh Inc. (License GPLv2)

Web References