Hello,
when configuring a load balancer for example, with a templated configuration file, how would I go about inserting IP addresses from my inventory file?
I realize that I might not be understanding completely how roles, playbooks, and the inventory file (and variable files) are supposed to divide responsibilities among them, because I generally have a one-to-one-to-many mapping of hosts to playbooks to roles.
For example:
File 'hosts' -----
[db-machine]
<IP #1>
[webserver]
<IP #2>
-------------------
File 'setup-webserver.yml' (playbook) ------
---
- name: Setup webserver
hosts: webserver
user: root
roles:
- infrastructure
- staff-accessible
- webserver
--------------------------------------------------------
And then there is a directory for the 'webserver' role, which contains tasks to install stuff.
So my question is, if I now wanted to configure a loadbalancer, how would I go about not duplicating the IP address of the webserver in both the template and the hosts file?
Also how could it work out if there were more than one hosts in the 'webserver' group in my hosts file?
Thanks,
Thomas