famedly / famedly.matrix / 0.2.2 / module / synapse_register Register a synapse user Authors: Jan Christian Grünhage (@jcgruenhage) preview | supported by communityfamedly.matrix.synapse_register (0.2.2) — module
Install with ansible-galaxy collection install famedly.matrix:==0.2.2
collections: - name: famedly.matrix version: 0.2.2
register a matrix user using synapse's admin API
- name: Log in to matrix synapse_register: hs_url: "https://matrix.org" user_id: "{{ matrix_auth_user }}" password: "{{ matrix_auth_password }}" admin: true shared_secret: "long secret string"
admin: default: false description: - Whether or not the new user should be an admin required: false type: bool hs_url: description: - URL of the homeserver, where the CS-API is reachable required: true user_id: description: - The user id of the user required: true password: description: - The password to register with required: true shared_secret: description: - Shared secret to authenticate registration request required: true