The reference for privileges is here:
https://www.elastic.co/guide/en/x-pack/5.4/security-privileges.html
Built-in roles have privileges that are not in the reference list. For example, here are two built-in roles. The cluster privileges for 'ingest_admin' role are in the reference list, but the 'cluster:admin/xpack/monitoring/bulk' privilege for 'kibana_system' role is not in the reference. Can somebody please explain why this is the case? Is the reference list of security privileges not comprehensive?
Thanks.
"ingest_admin": {
"cluster": [
"manage_index_templates",
"manage_pipeline"
],
"indices": [],
"metadata": {
"_reserved": true
},
"run_as": [],
"transient_metadata": {
"enabled": true
}
},
"kibana_system": {
"cluster": [
"monitor",
"cluster:admin/xpack/monitoring/bulk"
],
"indices": [
{
"names": [
".kibana*",
".reporting-*"
],
"privileges": [
"all"
]
}
],
"metadata": {
"_reserved": true
},
"run_as": [],
"transient_metadata": {
"enabled": true
}
}