11 lines
290 B
Django/Jinja
11 lines
290 B
Django/Jinja
{% for platform in molecule_yml.platforms %}
|
|
{% for host in server.results %}
|
|
Host {{ platform.name }}
|
|
HostName {{ host.droplet.ip_address }}
|
|
Port {{ ssh_port }}
|
|
IdentityFile {{ ssh_identity_file }}
|
|
PreferredAuthentications publickey
|
|
User {{ ssh_user }}
|
|
{% endfor %}
|
|
{% endfor %}
|