Created
May 27, 2014 20:11
-
-
Save ncadou/71613d11783d6ed03f25 to your computer and use it in GitHub Desktop.
Ansible vars plugin that reads from keepass (v1 databases)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from os import environ, path | |
from ansible import errors, utils | |
from keepassdb import Database | |
DEFAULT_DB = 'prod' | |
class VarsModule(object): | |
"""Loads variables from secret_vars/<username>.kdb in the same directory | |
as the playbook.""" | |
def __init__(self, inventory): | |
self.inventory = inventory | |
def run(self, host): | |
"""Load variables from a keepass database.""" | |
password = environ.get('KEEPASS_PASSWORD') | |
if password is None: | |
password = utils.getpass.getpass('Enter your keepass password: ') | |
basedir = self.inventory.playbook_basedir() | |
if basedir is not None: | |
basedir = path.abspath(basedir) | |
kpdir = environ.get('KEEPASS_DIR', path.join(basedir, 'secret_vars')) | |
kpdb = environ.get('KEEPASS_DB', DEFAULT_DB) | |
filename = path.join(kpdir, '%s.kdb' % kpdb) | |
try: | |
keepassdb = Database(filename, password=password) | |
except Exception as e: | |
args = filename, e.message | |
raise errors.AnsibleError('Unable to open %s ("%s")' % args) | |
results = dict() | |
for group in keepassdb.groups: | |
if group.title != 'ansible': | |
continue | |
for entry in group.entries: | |
results['%s_url' % entry.title] = entry.url | |
results['%s_username' % entry.title] = entry.username | |
results['%s_password' % entry.title] = entry.password | |
results['%s_comment' % entry.title] = entry.notes | |
# Decode the key=value pairs found in the notes. | |
lines = entry.notes.split('\n') | |
if len(lines) == len(list(l for l in lines if '=' in l)): | |
for line in lines: | |
key, value = map(unicode.strip, line.split('=', 1)) | |
results['_'.join([entry.title, key])] = value | |
return results |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
is it still usable?