Hi,
We’re using vault files encrypted with multiple vault-id in our projects.
Everything works fine when we do something like:
ansible vault --vault-id generic@~/.ansible/generic-password --vault-id prod@~/.ansible/prod-password ...
But it’s not convenient way to pass password files for each vault id as cli arguments.
Previously, before vault-id, we used single password for everything and we just added “vault_password_file=~/.ansible/password” into ansible.cfg.
Is there any way to add multiple password file in ansible.cfg for each vault id?
The most straight way as for me, is to add something like this
[defaults] vault_password_file=generic@~/.ansible/generic-password vault_password_file=prod@~/.ansible/prod-password
And of course it doesn’t work.
But how can I do it right?
Thanks.