AnsibleOutput Data Type

Properties
name data type description
host string
result AnsibleResult

Example

{
  "host" : "...",
  "result" : {
    "_ansible_parsed" : true,
    "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
    } ],
    "_ansible_verbose_always" : true,
    "end" : "...",
    "_ansible_no_log" : true,
    "stdout" : "...",
    "msg" : "...",
    "cmd" : [ "...", "..." ],
    "rc" : 12345,
    "start" : "...",
    "stderr" : "...",
    "delta" : "...",
    "invocation" : {
      "module_name" : "..."
    },
    "stdout_lines" : [ "...", "..." ],
    "warnings" : [ "...", "..." ]
  }
}