ansible/test/integration/targets/inventory_yaml/success.json
Brian Coca fc71cde7d3
Yaml inventory more tolerant (#48883)
* make yaml inv more tolerant to comments
* add tests for bad inventory processing

fixes #47254
2018-11-30 22:04:39 -05:00

61 lines
1.2 KiB
JSON

{
"_meta": {
"hostvars": {
"alice": {
"status": "single"
},
"bobby": {
"in_trouble": true,
"popular": false
},
"cindy": {
"in_trouble": true,
"popular": true
},
"greg": {
"in_trouble": true,
"popular": true
},
"jan": {
"in_trouble": true,
"popular": false
},
"marcia": {
"in_trouble": true,
"popular": true
},
"peter": {
"in_trouble": true,
"popular": false
}
}
},
"all": {
"children": [
"cousins",
"kids",
"the-maid",
"ungrouped"
]
},
"cousins": {
"children": [
"redheads"
]
},
"kids": {
"hosts": [
"bobby",
"cindy",
"greg",
"jan",
"marcia",
"peter"
]
},
"the-maid": {
"hosts": [
"alice"
]
}
}