From 975b5e58589bae981747c57c2c58f100736d3190 Mon Sep 17 00:00:00 2001 From: netr0m Date: Sun, 18 Aug 2024 17:52:31 +0200 Subject: [PATCH] docs(wazuh): add section on wazuh config --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index d0e055a..8ecd5d0 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ An Ansible role for infrastructure components as Docker containers. Handles task | [godns](https://github.com/TimothyYe/godns) | Dynamic DNS | No | | [Wireguard](https://github.com/linuxserver/docker-wireguard) | Remote access VPN | No | | [Unifi](https://github.com/linuxserver/docker-unifi-controller) | Unifi network management | No | +| [Wazuh](https://github.com/wazuh/wazuh) | Wazuh Security Platform | No | ## Installation @@ -54,6 +55,14 @@ infra_graylog_password_secret: "super-long-random-string-minimum-64-chars" # Hash of the password used for the root user [run `echo -n yourpassword | shasum -a 256`] infra_graylog_password_sha2: "sha256-sum-of-your-password" +# If `infra_use_wazuh` is true, then +# Password for the wazuh indexer 'admin' user (infra_wazuh_indexer_admin_user) +infra_wazuh_indexer_admin_password: ~ +# Password for the wazuh indexer 'dashboard' user (infra_wazuh_indexer_dashboard_user) +infra_wazuh_indexer_dashboard_password: ~ +# Password for the wazuh api user (infra_wazuh_api_username). NB: The password for Wazuh API users must be between 8 and 64 characters long. It must contain at least one uppercase and one lowercase letter, a number, and a symbol. +infra_wazuh_api_password: ~ + ``` ### Recommended configuration changes