ansible-keepass icon indicating copy to clipboard operation
ansible-keepass copied to clipboard

Ansible lookup plugin to fetch data from KeePass file

Results 8 ansible-keepass issues
Sort by recently updated
recently updated
newest added

Firstly, thank you for the implementation of this, it works very nicely. One additional feature that would be nice to have is to have a `viczem.keepass.entry` (and maybe even `viczem.keepass.database`)...

Hi, I am using this plugin to keep all the user information (passwords, ssh keys...) centralised in a kdbx file and is working great. The only issue I found is...

https://github.com/viczem/ansible-keepass/blob/c1ecea1fb5336d8972de22d270acd95b70dfc099/plugins/lookup/keepass.py#L290 Using `find_entries` as in https://github.com/libkeepass/pykeepass#finding-entries Maybe implementing another lookup plugin or maybe there is a way to add this feature in the existing lookup ?

enhancement

There can potentially be some hiccups if in the task lists you have two lookups of the same attachment with more than the `ttl` of the socket in between. In...

This one is actually important. If the power is cut and the drive is accessed by a different OS, then the attachments become exposed. Maybe [`memory-tempfile`](https://pypi.org/project/memory-tempfile/) would be useful here....

I've added an attachment to my file with certain content: I read it like this: ```ansible - name: Backend postgres vars ansible.builtin.include_vars: file: "{{ lookup('viczem.keepass.keepass', 'infrastructure/infisical', 'attachments', 'infisical-postgres.yml') }}" name:...

So I had an issue when using this plugin with Semaphore UI for Ansible. First run would work but the second run the socket file would refuse the connection. I...