The inventory file
We do not need Ansible if we have no remote target to manage, right? Everything starts with the fact that we need to perform some task on a remote host. In Ansible, the way we specify the potential remote target is with an inventory file. We can have this inventory file as the /etc/ansible/hosts file or use the -i option to specify the file during playbook runtime. Personally, I prefer to have this file in the same directory where my playbook is and use the -i option.
The inventory file is a simple, plaintext INI-style (https://en.wikipedia.org/wiki/INI_file) file that states your target. By default, the target can either be a DNS FQDN or an IP address:
$ cat hosts
192.168.199.170
We can now use the command-line option to test Ansible and the hosts file:
$ ansible -i hosts 192.168.199.170 -m ping
192.168.199.170 | SUCCESS => {
"changed": false,
"ping": "pong"
}
The previous line in the example reads in the host file as the inventory file and executes the ping module on the host called 192.168.199.170. Ping (http://docs.ansible.com/ansible/ping_module.html) is a trivial test module that connects to the remote host, verifies a usable Python installation, and returns the output pong upon success.
If you get a host key error, it is typically because the host key is not in the known_hosts file, and is typically under ~/.ssh/known_hosts. You can either SSH to the host and answer yes when adding the host, or you can disable this by checking on /etc/ansible/ansible.cfg or ~/.ansible.cfg with the following code:
[defaults]
host_key_checking = False
Now that we have validated the inventory file and Ansible package, we can make our first playbook.