Update README.md (#194)

This commit is contained in:
Amaury Borges Souza 2021-11-29 03:11:48 -03:00 committed by GitHub
parent a7d23b912d
commit 4a88b0590d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,7 @@
<summary>Describe each of the following components in Ansible, including the relationship between them:
* Task
* Inventory
* Module
* Play
* Playbook
@ -23,6 +24,8 @@
Task a call to a specific Ansible module
Module the actual unit of code executed by Ansible on your own host or a remote host. Modules are indexed by category (database, file, network, …) and also referred to as task plugins.
Inventory An inventory file defines hosts and/or groups of hosts on which Ansible tasks executed upon. The inventory file can be in one of many formats, depending on the inventory plugins you have. The most common formats are INI and YAML.
Play One or more tasks executed on a given host(s)