From 6d1a834b81aa2e1b30c064d9c7c0c038f9a88265 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Mon, 11 Aug 2014 15:51:27 -0500 Subject: [PATCH] Add vault-keyring.py contrib script that can be used with --vault-password-file --- contrib/vault/vault-keyring.py | 77 ++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 contrib/vault/vault-keyring.py diff --git a/contrib/vault/vault-keyring.py b/contrib/vault/vault-keyring.py new file mode 100644 index 00000000000..d294bff0ea5 --- /dev/null +++ b/contrib/vault/vault-keyring.py @@ -0,0 +1,77 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# (c) 2014, Matt Martz +# +# This file is part of Ansible +# +# Ansible is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Ansible is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Ansible. If not, see . +# +# +# Script to be used with vault_password_file or --vault-password-file +# to retrieve the vault password via your OSes native keyring application +# +# This script requires the ``keyring`` python module +# +# Add a [vault] section to your ansible.cfg file, +# the only option is 'username'. Example: +# +# [vault] +# username = 'ansible_vault' +# +# Additionally, it would be a good idea to configure vault_password_file in +# ansible.cfg +# +# [defaults] +# ... +# vault_password_file = /path/to/vault-keyring.py +# ... +# +# To set your password: python /path/to/vault-keyring.py set +# +# If you choose to not configure the path to vault_password_file in ansible.cfg +# your ansible-playbook command may look like: +# +# ansible-playbook --vault-password-file=/path/to/vault-keyring.py site.yml + +import sys +import getpass +import keyring + +import ansible.constants as C + + +def main(): + parser = C.load_config_file() + try: + username = parser.get('vault', 'username') + except: + sys.stderr.write('No [vault] section configured\n') + sys.exit(1) + + if len(sys.argv) == 2 and sys.argv[1] == 'set': + password = getpass.getpass() + confirm = getpass.getpass('Confirm password: ') + if password == confirm: + keyring.set_password('ansible', username, password) + else: + sys.stderr.write('Passwords do not match\n') + sys.exit(1) + else: + sys.stdout.write(keyring.get_password('ansible', username)) + + sys.exit(0) + + +if __name__ == '__main__': + main()