Valid EX374 Dumps shared by ExamDiscuss.com for Helping Passing EX374 Exam! ExamDiscuss.com now offer the newest EX374 exam dumps, the ExamDiscuss.com EX374 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com EX374 dumps with Test Engine here:
Run a task on a different host than the one defined in the inventory using delegate_to.
Correct Answer:
- name: Delegate task to another host hosts: web1 tasks: - name: Run a command on db1 command: uptime delegate_to: db1 Explanation: The delegate_to keyword ensures the task is executed on db1, even if the play is targeting web1. This is useful for tasks requiring resources or operations on another host.