Looking for a json samples to configure csv share reporting

According to the documentation: Reporting settings in Kibana | Kibana Guide [8.12] | Elastic I have to add "xpack.reporting.roles.enabled: false" on kibana yaml file.
But I already have a xpack definition on json file and I got that error: " our changes cannot be applied
Kibana - Cannot currently specify user settings using YAML and JSON simultaneously, please choose one".
But I didn't find any sample or documentation how to do it.
I'm running a cloud version highest license.
Any hints?
Thanks.

I didn't know it was possible to specify User Settings as JSON. Anyway, if you want to apply the xpack.reporting.roles.enabled setting as JSON as well, that would come out to:

{
  "xpack": {
    "reporting": {
      "roles": {
        "enabled": false
      }
    }
  }
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.