AnsibleResult Data Type

Properties
name data type description
msg string
changed boolean
results array of AnsibleResult_

Example

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