Skip to content

Latest commit

 

History

History
92 lines (43 loc) · 1.3 KB

create_user.rst

File metadata and controls

92 lines (43 loc) · 1.3 KB

create_user -- Create user in Passbolt

The Passbolt create user module creates a user in Passbolt via the API.

passbolt_uri (True, str, None)
The Passbolt instance Fully Qualified Domain Name(FQDN)
gpgkey (True, str, None)
The GPG Private key used to access Passbolt.
passphrase (True, str, None)
The Passphrase used with the GPG Private key used to access Passbolt.
username (True, str, None)
The email address of the user you wish to create.
firstname (True, str, None)
The first name of the user you wish to create.
lastname (True, str, None)
The last name of the user you wish to create.
admin (False, bool, False)
Grant the user admin privileges (Defaults false)
- name: Create User
  daniel_lynch.passbolt.create_user:
    passbolt_uri: "https://passbolt.example.com"
    gpgkey: "{{ gpgkey }}"
    passphrase: "password"
    username: "[email protected]"
    firstname: "Test"
    lastname: "Ing"
    admin: True
  delegate_to: localhost

Authors

  • Daniel Lynch (@daniel-lynch)