0 votes
in Ansible by
What are Ansible Vaults, and why are they used?

1 Answer

0 votes
by

Ansible Vault is a feature that allows keeping all your secrets safe. It can encrypt entire files, YAML playbooks, or even a few variables. It provides a facility where you also can integrate the sensitive data into your playbooks.

Vault is implemented with file-level granularity, where the files are completely encrypted or unencrypted. It uses the same password for encrypting as well as decrypt the data, which makes Ansible vault user-friendly.

Related questions

+1 vote
asked May 8, 2020 in Ansible by SakshiSharma
0 votes
asked Nov 13, 2019 in Ansible by rajeshsharma
...