Skip to content

Latest commit

 

History

History
77 lines (34 loc) · 1011 Bytes

delete_user.rst

File metadata and controls

77 lines (34 loc) · 1011 Bytes

delete_user -- delete user in Passbolt

The Passbolt delete user module deletes 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 delete.
- name: Delete User
  daniel_lynch.passbolt.delete_user:
    passbolt_uri: "https://passbolt.example.com"
    gpgkey: "{{ gpgkey }}"
    passphrase: "password"
    username: "[email protected]"
  delegate_to: localhost

Authors

  • Daniel Lynch (@daniel-lynch)