- Docs »
- ejabberd_user - Manages users for ejabberd servers
-
You are reading an unmaintained version of the Ansible documentation. Unmaintained Ansible versions can contain unfixed security vulnerabilities (CVE). Please upgrade to a maintained version. See the latest Ansible documentation.
ejabberd_user - Manages users for ejabberd servers
- This module provides user management for ejabberd servers
The below requirements are needed on the host that executes this module.
- ejabberd with mod_admin_extra
Parameter |
Choices/Defaults |
Comments |
host
required |
|
the ejabberd host associated with this username
|
logging
bool |
|
enables or disables the local syslog facility for this module
|
password
|
|
the password to assign to the username
|
state
|
Choices:
present ←
- absent
|
describe the desired state of the user to be managed
|
username
required |
|
the name of the user to manage
|
Note
- Password parameter is required for state == present only
- Passwords must be stored in clear text for this release
- The ejabberd configuration file must include mod_admin_extra as a module.
# Example playbook entries using the ejabberd_user module to manage users state.
- name: create a user if it does not exist
ejabberd_user:
username: test
host: server
password: password
- name: delete a user if it exists
ejabberd_user:
username: test
host: server
state: absent
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
This module is flagged as community which means that it is maintained by the Ansible Community. See Module Maintenance & Support for more info.
For a list of other modules that are also maintained by the Ansible Community, see here.
- Peter Sprygada (@privateip)
Hint
If you notice any issues in this documentation you can edit this document to improve it.