July 3, 2025
How to setup Ansible Vault
#
Here’s a little guide on how I setup Ansible Vault for my Ansible playbook repository. It’s surprisingly simple and now all of my secrets are encrypted.
Setting Up Ansible Vault
#
1. Create the Directory Structure
#
First, create the standard Ansible directory structure for group variables:
2. Create Your Vault File
#
Create a vault file to store your encrypted credentials:
June 30, 2025
Use ansible-lint with Vault Files
#
Why I wrote this post
#
I decided to write this post because I struggled to find clear, practical examples of how to make ansible-lint work with Ansible Vault files in CI/CD environments. While searching for solutions, I found a GitHub discussion where someone was asking the exact same question I had.
The official ansible-lint documentation mentions that decrypting Ansible Vault in CI is possible, but frustratingly, it doesn’t provide any actual examples of how to implement it. After some trial and error, I figured out a working solution that I want to share.