aboutsummaryrefslogtreecommitdiffstats
path: root/resources/ansible_roles/openstack/templates/ssh.cfg.j2
blob: c0a1f94e6a0ea5190b290ce5def75ca29faefde2 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Connect to target node 

{% for item in stack.stack.outputs %}
{% if item.output_key == 'instance_ip' %}
Host {{ item.output_value }}
  HostName {{ item.output_value }}
  User {{ ansible_user }}
  IdentityFile {{ temp_dir }}/QtipKey
{% endif %}

{% endfor %}