forked from vitabaks/autobase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory
29 lines (21 loc) · 821 Bytes
/
inventory
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
# This is example inventory file!
# Please specify the ip addresses and connection settings for your environment
# The specified ip addresses will be used to listen by the cluster components.
# "postgresql_exists='true'" if PostgreSQL is already exists and runing
# "hostname=" variable is optional (used to change the server name)
[master]
10.128.64.140 postgresql_exists='false' hostname=pgnode01
[replica]
10.128.64.142 hostname=pgnode02
10.128.64.143 hostname=pgnode03
[postgres_cluster:children]
master
replica
# Connection settings
[all:vars]
ansible_connection='ssh'
ansible_ssh_port='22'
ansible_user='root'
ansible_ssh_pass='testpas' # "sshpass" package is required for use "ansible_ssh_pass"
#ansible_ssh_private_key_file=
# ansible_python_interpreter='/usr/bin/python3' # is required for use python3