Is it possible to specify multiple inventory files at once?
What keyword stores a command's output into a variable?
What does the lineinfile module do?
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?
What command is used to run a playbook?