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.
27 lines
540 B
Plaintext
27 lines
540 B
Plaintext
6 years ago
|
[local]
|
||
|
testhost ansible_connection=local
|
||
|
testhost2 ansible_connection=local
|
||
|
|
||
|
# the following inline declarations are accompanied
|
||
|
# by (preferred) group_vars/ and host_vars/ variables
|
||
|
# and are used in testing of variable precedence
|
||
|
|
||
|
[arbitrary_parent:children]
|
||
|
local
|
||
|
|
||
|
[local:vars]
|
||
|
parent_var=6000
|
||
|
groups_tree_var=5000
|
||
|
|
||
|
[arbitrary_parent:vars]
|
||
|
groups_tree_var=4000
|
||
|
overridden_in_parent=1000
|
||
|
|
||
|
[arbitrary_grandparent:children]
|
||
|
arbitrary_parent
|
||
|
|
||
|
[arbitrary_grandparent:vars]
|
||
|
groups_tree_var=3000
|
||
|
grandparent_var=2000
|
||
|
overridden_in_parent=2000
|