mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add note about installing cryptography.
This commit is contained in:
parent
58cccce384
commit
956fa80115
1 changed files with 6 additions and 0 deletions
|
@ -108,5 +108,11 @@ This is something you may wish to do if using Ansible from a continuous integrat
|
||||||
|
|
||||||
(The `--vault-password-file` option can also be used with the :ref:`ansible-pull` command if you wish, though this would require distributing the keys to your nodes, so understand the implications -- vault is more intended for push mode).
|
(The `--vault-password-file` option can also be used with the :ref:`ansible-pull` command if you wish, though this would require distributing the keys to your nodes, so understand the implications -- vault is more intended for push mode).
|
||||||
|
|
||||||
|
.. _speeding_up_vault:
|
||||||
|
|
||||||
|
Speeding Up Vault Operations
|
||||||
|
````````````````````````````
|
||||||
|
|
||||||
|
By default, Ansible uses PyCrypto to encrypt and decrypt vault files. If you have many encrypted files, decrypting them at startup may cause a perceptible delay. To speed this up, install the cryptography package::
|
||||||
|
|
||||||
|
pip install cryptography
|
||||||
|
|
Loading…
Reference in a new issue