mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
923 B
Plaintext
97 lines
923 B
Plaintext
11 years ago
|
# order of groups, children, and vars is not significant
|
||
13 years ago
|
# so this example mixes them up for maximum testing
|
||
|
|
||
|
[nc:children]
|
||
|
rtp
|
||
|
triangle
|
||
|
|
||
|
[eastcoast:children]
|
||
|
nc
|
||
|
florida
|
||
|
|
||
|
[us:children]
|
||
|
eastcoast
|
||
|
|
||
13 years ago
|
[redundantgroup]
|
||
|
rtp_a
|
||
|
|
||
|
[redundantgroup2]
|
||
|
rtp_a
|
||
|
|
||
|
[redundantgroup3:children]
|
||
|
rtp
|
||
|
|
||
|
[redundantgroup:vars]
|
||
|
rga=1
|
||
|
|
||
|
[redundantgroup2:vars]
|
||
|
rgb=2
|
||
|
|
||
|
[redundantgroup3:vars]
|
||
|
rgc=3
|
||
|
|
||
13 years ago
|
[nc:vars]
|
||
|
b=10000
|
||
|
c=10001
|
||
|
d=10002
|
||
12 years ago
|
e = 10003
|
||
|
f = 10004 != 10005
|
||
|
g = " g "
|
||
|
h = ' h '
|
||
|
i = ' i "
|
||
|
j = " j
|
||
11 years ago
|
k = ['k1', 'k2']
|
||
13 years ago
|
|
||
|
[rtp]
|
||
|
rtp_a
|
||
|
rtp_b
|
||
12 years ago
|
rtp_c
|
||
13 years ago
|
|
||
|
[rtp:vars]
|
||
|
a=1
|
||
|
b=2
|
||
|
c=3
|
||
|
|
||
|
[triangle]
|
||
|
tri_a
|
||
|
tri_b
|
||
|
tri_c
|
||
|
|
||
|
[triangle:vars]
|
||
|
a=11
|
||
|
b=12
|
||
|
c=13
|
||
|
|
||
|
[florida]
|
||
|
orlando
|
||
|
miami
|
||
|
|
||
|
[florida:vars]
|
||
|
a=100
|
||
|
b=101
|
||
|
c=102
|
||
|
|
||
|
|
||
|
[eastcoast:vars]
|
||
|
b=100000
|
||
|
c=100001
|
||
|
d=100002
|
||
|
|
||
|
[us:vars]
|
||
|
c=1000000
|
||
|
|
||
12 years ago
|
[role1]
|
||
|
host[1:2]
|
||
|
|
||
|
[role2]
|
||
|
host[2:3]
|
||
13 years ago
|
|
||
11 years ago
|
[role3]
|
||
|
host[1:3:2]
|
||
11 years ago
|
|
||
|
[role4]
|
||
|
blade-[a:c]-[1:16]
|
||
|
blade-[d:z]-[01:16].example.com
|
||
|
blade-[1:10]-[1:16]
|
||
|
host-e-[10:16].example.net:1234
|