-
Notifications
You must be signed in to change notification settings - Fork 3
/
inventory_example.yaml
32 lines (32 loc) · 1.03 KB
/
inventory_example.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
manager:
hosts:
<hostname>:
ansible_port: <port_number>
ansible_connection: ssh
ansible_user: <user>
ansible_password: <password>
ansible_ssh_extra_args: '-o StrictHostKeyChecking=no'
ansible_python_interpreter: '/usr/bin/python3'
worker:
hosts:
<hostname>:
ansible_port: <port_number>
ansible_connection: ssh
ansible_user: <user>
ansible_password: <password>
ansible_ssh_extra_args: '-o StrictHostKeyChecking=no'
ansible_python_interpreter: '/usr/bin/python3'
<hostname>:
ansible_port: <port_number>
ansible_connection: ssh
ansible_user: <user>
ansible_password: <password>
ansible_ssh_extra_args: '-o StrictHostKeyChecking=no'
ansible_python_interpreter: '/usr/bin/python3'
<hostname>:
ansible_port: <port_number>
ansible_connection: ssh
ansible_user: <user>
ansible_password: <password>
ansible_ssh_extra_args: '-o StrictHostKeyChecking=no'
ansible_python_interpreter: '/usr/bin/python3'