We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gitea_users
When iterating over gitea_users to create or remove local users, the full items including the password are logged for both tasks.
While using loop_control to only show the user name would look nicer, Ansible recommends to set no_log: true: https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_loops.html#limiting-loop-output-with-label
loop_control
no_log: true
The text was updated successfully, but these errors were encountered:
I like the idea with loop_control.
I guess it could look something like that:
loop_control: label: "user={{ user.name }}" loop_var: user
But I don't have the time to test it and create Pull-Request today. @abrain Please feel free to open a PR if you like 😘
Sorry, something went wrong.
71b75fd
Successfully merging a pull request may close this issue.
When iterating over
gitea_users
to create or remove local users, the full items including the password are logged for both tasks.While using
loop_control
to only show the user name would look nicer, Ansible recommends to setno_log: true
: https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_loops.html#limiting-loop-output-with-labelThe text was updated successfully, but these errors were encountered: