1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/vault
Adrian Likins 297dfb1d50 Vault secrets script client inc new 'keyring' client (#27669)
This adds a new type of vault-password script  (a 'client') that takes advantage of and enhances the 
multiple vault password support.

If a vault password script basename ends with the name '-client', consider it a vault password script client. 

A vault password script 'client' just means that the script will take a '--vault-id' command line arg.

The previous vault password script (as invoked by --vault-password-file pointing to an executable) takes
no args and returns the password on stdout. But it doesnt know anything about --vault-id or multiple vault
passwords.

The new 'protocol' of the vault password script takes a cli arg ('--vault-id') so that it can lookup that specific
vault-id and return it's password.

Since existing vault password scripts don't know the new 'protocol', a way to distinguish password scripts
that do understand the protocol was needed.  The convention now is to consider password scripts that are
named like 'something-client.py' (and executable) to be vault password client scripts.

The new client scripts get invoked with the '--vault-id' they were requested for. An example:

     ansible-playbook --vault-id my_vault_id@contrib/vault/vault-keyring-client.py some_playbook.yml

That will cause the 'contrib/vault/vault-keyring-client.py' script to be invoked as:

     contrib/vault/vault-keyring-client.py --vault-id my_vault_id

The previous vault-keyring.py password script was extended to become vault-keyring-client.py. It uses
the python 'keyring' module to request secrets from various backends. The plain 'vault-keyring.py' script
would determine which key id and keyring name to use based on values that had to be set in ansible.cfg.
So it was also limited to one keyring name.

The new vault-keyring-client.py will request the secret for the vault id provided via the '--vault-id' option.
The script can be used without config and can be used for multiple keyring ids (and keyrings).

On success, a vault password client script will print the password to stdout and exit with a return code of 0.
If the 'client' script can't find a secret for the --vault-id, the script will exit with return code of 2 and print an error to stderr.
2017-10-13 15:23:08 -04:00
..
roles Support multiple vault passwords (#22756) 2017-07-28 15:20:58 -04:00
aliases Initial ansible-test implementation. (#18556) 2016-11-29 21:21:53 -08:00
empty-password Vault secrets empty password (#28186) 2017-08-15 11:01:46 -04:00
encrypted_file_encrypted_var_password Support multiple vault passwords (#22756) 2017-07-28 15:20:58 -04:00
example1_password Support multiple vault passwords (#22756) 2017-07-28 15:20:58 -04:00
example2_password Support multiple vault passwords (#22756) 2017-07-28 15:20:58 -04:00
example3_password Support multiple vault passwords (#22756) 2017-07-28 15:20:58 -04:00
faux-editor.py Use vault_id when encrypted via vault-edit (#30772) 2017-09-26 12:28:31 -04:00
format_1_0_AES.yml Cyptography pr 20566 rebase (#25560) 2017-06-27 06:00:15 -07:00
format_1_1_AES.yml Cyptography pr 20566 rebase (#25560) 2017-06-27 06:00:15 -07:00
format_1_1_AES256.yml Cyptography pr 20566 rebase (#25560) 2017-06-27 06:00:15 -07:00
format_1_2_AES256.yml Support multiple vault passwords (#22756) 2017-07-28 15:20:58 -04:00
password-script.py Support multiple vault passwords (#22756) 2017-07-28 15:20:58 -04:00
runme.sh Vault secrets script client inc new 'keyring' client (#27669) 2017-10-13 15:23:08 -04:00
runme_change_pip_installed.sh Cyptography pr 20566 rebase (#25560) 2017-06-27 06:00:15 -07:00
test-vault-client.py Vault secrets script client inc new 'keyring' client (#27669) 2017-10-13 15:23:08 -04:00
test_vault.yml Split integration tests out from Makefile. (#17976) 2016-10-12 14:57:53 -07:00
test_vault_embedded.yml Split integration tests out from Makefile. (#17976) 2016-10-12 14:57:53 -07:00
test_vault_embedded_ids.yml Support multiple vault passwords (#22756) 2017-07-28 15:20:58 -04:00
test_vault_file_encrypted_embedded.yml Support multiple vault passwords (#22756) 2017-07-28 15:20:58 -04:00
test_vaulted_inventory.yml add a intg test for vault encrypted inventory (#18550) 2016-11-22 10:56:37 -05:00
test_vaulted_template.yml Allow template files to be vaulted (#22951) 2017-06-07 14:16:03 -04:00
vault-password Split integration tests out from Makefile. (#17976) 2016-10-12 14:57:53 -07:00
vault-password-ansible Cyptography pr 20566 rebase (#25560) 2017-06-27 06:00:15 -07:00
vault-password-wrong Cyptography pr 20566 rebase (#25560) 2017-06-27 06:00:15 -07:00
vault-secret.txt Split integration tests out from Makefile. (#17976) 2016-10-12 14:57:53 -07:00
vaulted.inventory add a intg test for vault encrypted inventory (#18550) 2016-11-22 10:56:37 -05:00