Hi,
My playbook installs Docker on a remote server, and logs in on a docker registry by using user credentials, specified by following task
`
- name: Log into FIS registry
docker_login:
registry: my-company-docker-registry
username: my-user-account
password: my-password-in-plain-text
`
Now, what I want to achieve is that my password is stored in the ansible vault and gets decrypted back from the ansible vault.
This to have no plain password anymore in my playbook.
But how do I achieve this?