aboutsummaryrefslogtreecommitdiffstats
path: root/resources/template/hosts.j2
blob: 868a4e57737d51a7c31f845babb0066b01a463ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[fuel-master]
fuel-master

[local]
localhost   ansible_connection=local

[fuel-groups:children]
{% for group in hosts|sort %}
{{ group }}
{% endfor %}

[fuel-groups:vars]
ansible_ssh_common_args=-F ./ssh.cfg

{% for group in hosts|sort %}
[{{ group }}]
{% for host in hosts[group]|sort %}
{{ host }}
{% endfor %}

{% endfor %}