AnsibleOutput Data Type

Properties
name data type description
host string
result AnsibleResult

Example

{
  "host" : "...",
  "result" : {
    "msg" : "...",
    "changed" : true,
    "results" : [ {
      "_ansible_parsed" : true,
      "changed" : true,
      "cache_updated" : true,
      "_ansible_item_result" : true,
      "item" : [ "...", "..." ],
      "invocation" : { },
      "cache_update_time" : 12345,
      "_ansible_no_log" : true
    }, {
      "_ansible_parsed" : true,
      "changed" : true,
      "cache_updated" : true,
      "_ansible_item_result" : true,
      "item" : [ "...", "..." ],
      "invocation" : { },
      "cache_update_time" : 12345,
      "_ansible_no_log" : true
    } ]
  }
}