diff --git a/source/deployment-options/deploying-with-puppet/wazuh-puppet-module/index.rst b/source/deployment-options/deploying-with-puppet/wazuh-puppet-module/index.rst index 7e5e744a87..2194cac238 100644 --- a/source/deployment-options/deploying-with-puppet/wazuh-puppet-module/index.rst +++ b/source/deployment-options/deploying-with-puppet/wazuh-puppet-module/index.rst @@ -68,6 +68,47 @@ Place the file at ``/etc/puppetlabs/code/environments/production/manifests/`` in # puppet agent -t +Change Password for Wazuh users +------------------------------- + +Follow the instructions in the :doc:`Password Management ` section to change your Wazuh user passwords. Once you change them, set the new passwords within the classes used for deploying the Wazuh Stack. + +Indexer users +^^^^^^^^^^^^^ + +- ``admin`` user: + + .. code-block:: puppet + + node "puppet-agent.com" { + class { 'wazuh::dashboard': + dashboard_password => '' + } + } + +- ``kibanaserver`` user: + + .. code-block:: puppet + + node "puppet-agent.com" { + class { 'wazuh::filebeat_oss': + filebeat_oss_elastic_password => '' + } + } + +Wazuh API users +^^^^^^^^^^^^^^^ + +- ``wazuh-wui`` user: + + .. code-block:: puppet + + node "puppet-agent.com" { + class { 'wazuh::dashboard': + dashboard_wazuh_api_credentials => '' + } + } + Install Wazuh agent via Puppet ------------------------------