daniel_lynch.passbolt.update_group (0.1.10) — module

Update group in Passbolt

Authors: Daniel Lynch (@daniel-lynch)

Install collection

Install with ansible-galaxy collection install daniel_lynch.passbolt:==0.1.10


Add to requirements.yml

  collections:
    - name: daniel_lynch.passbolt
      version: 0.1.10

Description

The Passbolt update group module updates a group in Passbolt via the API. Currently only supports adding Users and Admins due to API limitations.

You either need the gpgkey and the passphrase or the fingerprint of the secret key stored in the gpg-agent.

Inputs

    
name:
    description:
    - The name of the group you wish to update.
    required: true
    type: str

users:
    description:
    - A list of users to add to the group.
    elements: str
    required: false
    type: list

admins:
    description:
    - A list of admins to add to the group.
    elements: str
    required: false
    type: list

gpgkey:
    description:
    - The GPG Private key used to access Passbolt.
    required: false
    type: str

verify:
    description:
    - Whether to verify SSL or not. (Defaults to verify)
    required: false

passphrase:
    description:
    - The Passphrase used with the GPG Private key used to access Passbolt.
    required: false
    type: str

fingerprint:
    description:
    - The fingerprint of the imported Private key used to access Passbolt.
    required: false

passbolt_uri:
    description:
    - The Passbolt instance Fully Qualified Domain Name(FQDN)
    required: true
    type: str