community.general.lastpass lookup – fetch data from lastpass

Note

This lookup plugin is part of the community.general collection (version 4.8.3).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install community.general.

To use it in a playbook, specify: community.general.lastpass.

Synopsis

  • use the lpass command line utility to fetch specific fields from lastpass

Requirements

The below requirements are needed on the local controller node that executes this lookup.

  • lpass (command line utility)

  • must have already logged into lastpass

Parameters

Parameter

Comments

_terms

string / required

key from which you want to retrieve the field

field

string

field to return from lastpass

Default: “password”

Examples

- name: get 'custom_field' from lastpass entry 'entry-name'
  ansible.builtin.debug:
    msg: "{{ lookup('community.general.lastpass', 'entry-name', field='custom_field') }}"

Return Values

Common return values are documented here, the following are the fields unique to this lookup:

Key

Description

_raw

list / elements=string

secrets stored

Returned: success

Authors

  • Andrew Zenk

Hint

Configuration entries for each entry type have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up.