-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhosts.dist
65 lines (47 loc) · 1.53 KB
/
hosts.dist
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
; localhost
localhost ansible_host=127.0.0.1 ansible_connection=local
; project_x
name11.dev.lan ansible_host=192.168.1.101 ansible_user=vagrant ansible_private_key_file=~/.vagrant.d/insecure_private_key
name.stage.com-A ansible_host=name.stage.com ansible_user=user
name13.prod.com ansible_host=name13.prod.com ansible_user=user
; project_y
name21.dev.lan ansible_host=192.168.1.102 ansible_user=vagrant ansible_private_key_file=~/.vagrant.d/insecure_private_key
name.stage.com-B ansible_host=name.stage.com ansible_user=user
name23.prod.com ansible_host=name23.prod.com ansible_user=user
; project_z
name31.com ansible_host=host31.com ansible_user=user
name32.com ansible_host=host32.com ansible_user=user
name33.com ansible_host=host33.com ansible_user=user
; project_x
[project_x_dev]
name11.dev.lan
[project_x_stage]
name.stage.com-A
[project_x_prod]
name13.prod.com
[project_x:children]
project_x_dev
project_x_stage
project_x_prod
; project_y
[project_y_dev]
name21.dev.lan
[project_y_stage]
name.stage.com-B
[project_y_prod]
name23.prod.com
[project_y:children]
project_y_dev
project_y_stage
project_y_prod
; project_z
[project_z_name31]
name31.com
[project_z_name32]
name32.com
[project_z_name33]
name33.com
[project_z:children]
project_z_name31
project_z_name32
project_z_name33