Explain a few of the basic terminologies or concepts in ansible.
Answer Posted / Rita Kumari
Some fundamental Ansible terms and concepts are: n1. Playbook: A collection of tasks that define actions to be taken on managed nodes.n2. Task: A single action, such as copying a file, installing a package, or running a command.n3. Role: A collection of related tasks, files, templates, and variables used to organize your playbooks.n4. Handler: A special type of task that can be triggered by other tasks when they have completed.n5. Module: A reusable piece of code written in Python that performs a specific task during play execution.n6. Fact: Data collected about managed nodes, such as operating system version, IP address, etc., which can be accessed and used within Ansible tasks.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Have you worked with ansible before? Please share your experience.
How do I write an ansible handler with multiple tasks?
What does fact mean in ansible?
How to keep secret data in a playbook?
What is ansible role?
What is ci/cd?
What are ansible vaults?
Is there a web interface / rest api / etc?
How is ansible different from puppet?
How to generate crypto passwords for the user module?
Compare ansible with chef.
Explain different modules in ansible.
How do I speed up management inside ec2?
Suppose you’re using ansible to configure the production environment and your playbook uses an encrypted file. Encrypted files prompt the user to enter passwords. But since ansible is used for automation, can this process be automated?
Is it possible to build our modules in ansible?