blob: 421c9c21f56a506ab31acdbd42714b2bac6482db (
plain)
1
2
3
4
5
6
7
8
|
[all]
{% for item in hosts %}
{{ item.key }} ansible_host={{ item.value }}
{% endfor %}
[all:vars]
ansible_ssh_private_key_file="~/.ssh/{{ keypair.name }}"
ansible_ssh_common_args='-o StrictHostKeyChecking=no'
|