Skip to content

Latest commit

 

History

History
77 lines (34 loc) · 990 Bytes

delete_group.rst

File metadata and controls

77 lines (34 loc) · 990 Bytes

delete_group -- Delete group in Passbolt

The Passbolt delete group module deletes a group 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.
name (True, str, None)
The name of the group you wish to delete.
- name: Delete Group
  daniel_lynch.passbolt.delete_group:
    passbolt_uri: "https://passbolt.example.com"
    gpgkey: "{{ gpgkey }}"
    passphrase: "password"
    name: "Users"
  delegate_to: localhost

Authors

  • Daniel Lynch (@daniel-lynch)