forked from Alfresco/alfresco-ansible-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory_ssh.yml
67 lines (67 loc) · 3.16 KB
/
inventory_ssh.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
all:
children:
database:
hosts:
database_1:
connection: ssh
ansible_host: targetIP
ansible_private_key_file: "/path/ssh_key.pem"
ansible_user: centos
ansible_ssh_common_args: "-o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s -o ForwardX11=no -o LogLevel=ERROR -o IdentitiesOnly=yes -o StrictHostKeyChecking=no"
repository:
hosts:
repository_1:
connection: ssh
ansible_host: targetIP
ansible_private_key_file: "/path/ssh_key.pem"
ansible_user: centos
ansible_ssh_common_args: "-o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s -o ForwardX11=no -o LogLevel=ERROR -o IdentitiesOnly=yes -o StrictHostKeyChecking=no"
activemq:
hosts:
activemq_1:
connection: ssh
ansible_host: targetIP
ansible_private_key_file: "/path/ssh_key.pem"
ansible_user: centos
ansible_ssh_common_args: "-o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s -o ForwardX11=no -o LogLevel=ERROR -o IdentitiesOnly=yes -o StrictHostKeyChecking=no"
search:
hosts:
search_1:
connection: ssh
ansible_host: targetIP
ansible_private_key_file: "/path/ssh_key.pem"
ansible_user: centos
ansible_ssh_common_args: "-o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s -o ForwardX11=no -o LogLevel=ERROR -o IdentitiesOnly=yes -o StrictHostKeyChecking=no"
nginx:
hosts:
nginx_1:
connection: ssh
ansible_host: targetIP
ansible_private_key_file: "/path/ssh_key.pem"
ansible_user: centos
ansible_ssh_common_args: "-o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s -o ForwardX11=no -o LogLevel=ERROR -o IdentitiesOnly=yes -o StrictHostKeyChecking=no"
adw:
hosts:
adw_1:
connection: ssh
ansible_host: targetIP
ansible_private_key_file: "/path/ssh_key.pem"
ansible_user: centos
ansible_ssh_common_args: "-o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s -o ForwardX11=no -o LogLevel=ERROR -o IdentitiesOnly=yes -o StrictHostKeyChecking=no"
transformers:
hosts:
transformers_1:
connection: ssh
ansible_host: targetIP
ansible_private_key_file: "/path/ssh_key.pem"
ansible_user: centos
ansible_ssh_common_args: "-o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s -o ForwardX11=no -o LogLevel=ERROR -o IdentitiesOnly=yes -o StrictHostKeyChecking=no"
syncservice:
hosts:
syncservice_1:
connection: ssh
ansible_host: targetIP
ansible_private_key_file: "/path/ssh_key.pem"
ansible_user: centos
ansible_ssh_common_args: "-o UserKnownHostsFile=/dev/null -o ControlMaster=auto -o ControlPersist=60s -o ForwardX11=no -o LogLevel=ERROR -o IdentitiesOnly=yes -o StrictHostKeyChecking=no"