ansible-vault
all
Encrypt and decrypt values, data structures, and files within Ansible projects.
More info →Examples (7)
Create a new encrypted vault file with a prompt for a password
ansible-vault create path/to/vault_fileEdit, view or re-key (re-encrypt) an existing encrypted vault file with a prompt for the password
ansible-vault edit|view|rekey path/to/vault_fileCreate a new encrypted vault file using a password file to encrypt it
ansible-vault create --vault-password-file path/to/password_file path/to/vault_fileEncrypt an existing plaintext file in-place using a password file
ansible-vault encrypt --vault-password-file path/to/password_file path/to/fileEncrypt a string using Ansible's encrypted string format, displaying interactive prompts
ansible-vault encrypt_stringView an encrypted vault file by using a password file to decrypt
ansible-vault view --vault-password-file path/to/password_file path/to/vault_fileRe-key (re-encrypt) an already encrypted vault file with a new password file
ansible-vault rekey --vault-password-file path/to/old_password_file --new-vault-password-file path/to/new_password_file path/to/vault_filemade by @shridhargupta | data from tldr-pages