ansible-core 2.19: Templates and expressions must use trusted sources

In ansible-core, templates and expressions must use trusted sources,
such as playbooks or roles, and module results are considered untrusted
sources.

Signed-off-by: Rafael Guterres Jeffman <rjeffman@redhat.com>
This commit is contained in:
Rafael Guterres Jeffman
2025-06-12 16:22:18 -03:00
parent 3f59332d99
commit 5ae39ec9de

View File

@@ -92,11 +92,11 @@
- name: Print generated random password for "{{ host1_fqdn }}"
ansible.builtin.debug:
var: ipahost.host["{{ host1_fqdn }}"].randompassword
var: ipahost.host[host1_fqdn].randompassword
- name: Print generated random password for "{{ host2_fqdn }}"
ansible.builtin.debug:
var: ipahost.host["{{ host2_fqdn }}"].randompassword
var: ipahost.host[host2_fqdn].randompassword
- name: Enrolled host "{{ server_fqdn }}" fails to set random password with update_password always
ipahost: