Git Product home page Git Product logo

Comments (2)

Rulqu avatar Rulqu commented on August 19, 2024

I tried with something like

                                                                                                 
        for t in terms[0]:
            entry_path = t.get('path').strip('/')                                                                    
            entry_attr = t.get('variable') 
            # entry getting code here

And using something like

keepass_dict:
  - username:
    path: 'path/to/entry'
    variable: 'username'
  - password:
    path: 'path/to/entry'
    variable: 'password'
  - become:
    path: 'path/to/entry' 
    variable: password

ansible_user: "{{ lookup('keepass',keepass_dict)}}"

This lacks the yml side of handling the returning array or dict, whichever is gonna be returned.
This seems to work but it would change the original purpose of the file too much so it would perhaps need to be and option somehow. My knowledge of python is lacking to do it the right way.

from ansible-keepass.

viczem avatar viczem commented on August 19, 2024

There are two ways to use this plugin - without and with a UNIX socket (see README).

  1. If you use the plugin without a UNIX socket, you will not be able to keep Keepass file decrypted, because for each playbook task Ansible runs this plugin as a new instance.
    Now PyKeePass object stored in a global variable for decrease time consumption (one file open for one task) compared to the previous version. But it not resolve the issue.

  2. If you will use UNIX sockets, you can keep Keepass file decrypted while the socket is open. I considered this variant as a bad idea for security reasons and programmed to close the database after each request. I agree that this is a bad option for performance. I rewrote this part of the code and reduced the default socket TTL to 1 minute. Now, while the socket is open, the Keepass file is always in decrypted state.

from ansible-keepass.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.