Я хочу скрыть "ansible_facts": { "discovered_interpreter_python": "/usr/bin/python3"} с выхода модуля ping.
"ansible_facts": { "discovered_interpreter_python": "/usr/bin/python3"}
Можно настроить DEFAULT_STDOUT_CALLBACK и " Set the main callback used to display Ansible output.". Например
" Set the main callback used to display Ansible output."
$ cat playbook.yml - hosts: test_01 tasks: - ping: $ export ANSIBLE_STDOUT_CALLBACK=actionable; ansible-playbook playbook.yml PLAY [test_01] *** PLAY RECAP *** test_01: ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
См. Другие доступные плагины обратного вызова .