Which of the following are sub commands of the ansible-galaxy command? (Choose all that apply.)
State whether the following statement is true or false.
Ansible expects templates to use json format.
State whether the following statement is true or false.
Ansible tower can be used to manage your ansible systems.
Where can you find a list of all modules in the Ansible online documentation?
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?