FREE Ansible Playbooks Questions and Answers
Which order does the Ansible Playbook execute?
What language is the default in which Ansible playbooks are written?
Explanation:
Ansible playbooks are often written in the YAML language.
What language is the default in which Ansible playbooks are written?
Explanation:
Ansible playbooks are written in YAML format by default. YAML stands for "YAML Ain't Markup Language" and is a human-readable data serialization language. It is often used for configuration files, and Ansible uses it as a default format for its playbooks.
Which command will you use to run a playbook called install.yaml with Ansible?
Explanation:
You can use the ansible-playbook command to run an Ansible playbook named install.yaml.
Which argument will you use in your Ansible playbook to define a variable?
Unlike any other system currently, Ansible playbooks provide the foundation of a multi-machine deployment and a straightforward configuration management solution ideal for deploying complicated applications.
Explanation:
Ansible playbooks can be used as the basis for a simple yet powerful configuration management and multi-machine deployment system, making it well-suited for deploying complex applications. This statement is true.
What does the Ansible playbook phrase "become: yes" mean?
Explanation:
The become: yes option in an Ansible playbook tells Ansible to execute the task with escalated privileges, typically using the "sudo" or "su" command.