aboutsummaryrefslogtreecommitdiffstats
path: root/resources/ansible_roles/openstack/templates/hosts.j2
blob: 6756d2a2a9ff2d1b74cf516913b856b8841314ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
localhost   ansible_connection=local

[SUT:children]
compute

[node-groups:children]
compute

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

[compute]
{% for item in stack.stack.outputs %}
{% if item.output_key == 'instance_ip' %}
{{item.output_value}}
{% endif %}
{% endfor %}