daniel_lynch.passbolt.create_user (0.1.10) — module

Create user 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 create user module creates a user in Passbolt via the API.

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

Inputs

    
admin:
    default: false
    description:
    - Grant the user admin privileges (Defaults false)
    required: false
    type: bool

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

lastname:
    description:
    - The last name of the user you wish to create.
    required: true
    type: str

username:
    description:
    - The email address of the user you wish to create.
    required: true
    type: str

firstname:
    description:
    - The first name of the user you wish to create.
    required: true
    type: str

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