Skip to content
Stuff I'm Up To
Go back
Ansible Vault and Lint Errors

Ansible Vault and Lint Errors

Updated:

Using the VS Code plugin for Ansible, I’m getting an internal error when it lints a YAML file. I know the syntax is OK, as I can run an ansible-playbook with --syntax-check and it works.

But then I’m using a command line that also includes my Ansible vault password file:

ansible-playbook -i inventory.yml --syntax-check desktop-playbook.yml --vault-password-file=~/.ansible/secret

The VS Code linter, doesn’t do this. So if I repeat the call without the vault password file, I get:

ansible-playbook -i inventory.yml --syntax-check desktop-playbook.yml                                  
ERROR! Attempting to decrypt but no vault secrets found

To solve the puzzle, you need to edit /etc/ansible/ansible.cfg, and put your vault file in the config:

vault_password_file = ~/.ansible/secret

Now, when you run the --syntax-check without the --vault-password-file parameter, it should work. Meaning, the VS Code lint should work also.

References

Ansible Lint Documentation

https://github.com/ansible/ansible-lint/issues/115#issuecomment-774472336


Share this post:

Previous Post
VS Code Extensions
Next Post
OpenVPN MFA and PAM