I have been using various scripts to create dashboards and visualizations from a template successfully on 7.5. When I try the same script on 7.10 it fails, and every visualization returns a 409 conflict error.
I'm posting this to Kibana: /api/saved_objects/_bulk_create?overwrite=true and including a json file with my dashboard and linked visualizations. With 7.10 I get something like this on each visualization:
"saved_objects": [
{
"error": {
"error": "Conflict",
"message": "Saved object [dashboard/Summary-data] conflict",
"statusCode": 409
},
"id": "Summary-data",
"type": "dashboard"
},
From reading the documentation it says I can use the Resolve Import Errors to resolve each conflict one by one. This seems tedious because I always want to overwrite, and secondly I do not think these are real conflicts, as far as I can tell the objects do not exist.