ansible/test/integration/targets/gathering_facts/one_two.json
Brian Coca 9281148b62
correctly merge multiple facts results (#68987)
* correctly merge multiple facts results

  fixes #68532
2020-05-20 18:53:37 -04:00

27 lines
No EOL
569 B
JSON

{
"_ansible_facts_gathered": true,
"common_dict_fact": {
"key_four": "from facts_two",
"key_one": "from facts_one",
"key_two": "from facts_two"
},
"common_fact": "also from facts_two module",
"common_list_fact": [
"three",
"five",
"one",
"two",
"four"
],
"common_list_fact2": [
"three",
"five",
"five",
"one",
"two",
"four",
"four"
],
"factsone": "from facts_one module",
"factstwo": "from facts_two module"
}