Questions
- What level of verbosity would you need to launch Ansible with to see details such as connection attempts?
a) Level 3 or above
b) Level 2 or above
c) Level 1 or above
d) Level 4
- Why should you be careful with verbosity levels above level one if you are using sensitive data in your playbook?
a) Higher verbosity levels don't support the use of vaults.
b) Higher verbosity levels may log sensitive data to the console and/or log file.
c) Higher verbosity levels will print SSH passwords.
- Ansible can be centrally configured to log its output to a file by:
a) Using the
ANSIBLE_LOG_PATH
environment variableb) Using the
log_path
directive inansible.cfg
c) Redirecting the output of each playbook run to a file
d) All of these
- The name of the module used for variable introspection is:
a)
ansible.builtin.analyze
b)
ansible.builtin.introspect
c)
ansible.builtin.debug
d)
ansible.builtin.print
- When referencing subelements in Ansible variables, which syntax is the safest to...