From 4a88b0590d212e2bbdeb6c8af40112b29fec04af Mon Sep 17 00:00:00 2001 From: Amaury Borges Souza Date: Mon, 29 Nov 2021 03:11:48 -0300 Subject: [PATCH] Update README.md (#194) --- exercises/ansible/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/exercises/ansible/README.md b/exercises/ansible/README.md index 12982c3..206c4d8 100644 --- a/exercises/ansible/README.md +++ b/exercises/ansible/README.md @@ -15,6 +15,7 @@ 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)