Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reset password process #6930

Merged
merged 2 commits into from
Jan 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 </user-manual/user-administration/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 => '<NEW_PASSWORD>'
}
}

- ``kibanaserver`` user:

.. code-block:: puppet

node "puppet-agent.com" {
class { 'wazuh::filebeat_oss':
filebeat_oss_elastic_password => '<NEW_PASSWORD>'
}
}

Wazuh API users
^^^^^^^^^^^^^^^

- ``wazuh-wui`` user:

.. code-block:: puppet

node "puppet-agent.com" {
class { 'wazuh::dashboard':
dashboard_wazuh_api_credentials => '<NEW_PASSWORD>'
}
}


Install Wazuh agent via Puppet
------------------------------
Expand Down
Loading