Consider the following playbook. — hosts: local become: yes tasks: – name: create users user: name: "{{item}}" with_items: – sam – john- bob How many times is the user module invoked? A. 5 B. 3 C. 1 D. 0

Examine the following inventory excerpt file named /home/user/ansible/inventory. [dbservers] db1.example.com Which of the following files does Ansible check for variables related to that inventory? (Choose all that apply.) A. /home/user/ansible/dbservers B. /home/user/ansible/host_vars/db1.example.com C. /home/user/ansible/host_vars/db1 D. /home/user/ansible/group_vars/dbservers