mirror of https://github.com/ansible/ansible.git
Add tests for new advanced inventory features (groups of groups, group variables) in the default INI format file.
parent
1a00e2635e
commit
157d21b1c3
@ -0,0 +1,58 @@
|
|||||||
|
# order of groups, children, and vars is not signficant
|
||||||
|
# so this example mixes them up for maximum testing
|
||||||
|
|
||||||
|
[nc:children]
|
||||||
|
rtp
|
||||||
|
triangle
|
||||||
|
|
||||||
|
[eastcoast:children]
|
||||||
|
nc
|
||||||
|
florida
|
||||||
|
|
||||||
|
[us:children]
|
||||||
|
eastcoast
|
||||||
|
|
||||||
|
[nc:vars]
|
||||||
|
b=10000
|
||||||
|
c=10001
|
||||||
|
d=10002
|
||||||
|
|
||||||
|
[rtp]
|
||||||
|
rtp_a
|
||||||
|
rtp_b
|
||||||
|
rtb_c
|
||||||
|
|
||||||
|
[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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue