Skip to content

Latest commit

 

History

History
89 lines (42 loc) · 1.17 KB

create_group.rst

File metadata and controls

89 lines (42 loc) · 1.17 KB

create_group -- Create group in Passbolt

The Passbolt create group module creates 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 create.
admins (True, list, None)
A list of group admins.
users (False, list, None)
A list of group users.
- name: Create Group
  daniel_lynch.passbolt.create_group:
    passbolt_uri: "https://passbolt.example.com"
    gpgkey: "{{ gpgkey }}"
    passphrase: "password"
    name: "Users"
    admins:
      - [email protected]
    users:
      - [email protected]
  delegate_to: localhost

Authors

  • Daniel Lynch (@daniel-lynch)