Ansible Playbook Vault
Ansible Playbook Vault
In this article, we will read about ansible-playbook vault. what is a vault and how to write code ansible-playbook vault.
Ansible allows keeping sensitive data such as passwords or keys in encrypted files rather than plain text in your playbooks.
Creating a new encrypted playbook
#ansible-vault create vault.yml
Edit the encrypted playbook
#ansible-vault edit vault.yml
To change the password encrypted playbook
#ansbile-vault rekey vault.yml
To encrypt an existing playbook
#ansible-vault encrypt vault.yml
To decrypt an encrypted playbook
#ansible-vault decrypt target.yml
0 comments
Please leave your comments...... Thanks