Hi, i have two index in elastic cloud
Added the new role for a custom dashboard
Created and configured roled with index "chiporro"
Created user and assigned role
When I log in to user test1, I can't see the dashboards (they exist with that index) and I can't do anything.
I need your help, I would appreciate it
Fabian
TimV
(Tim Vernum)
August 3, 2018, 12:48am
2
If you look at the definition for kibana_dashboard_only_role
you'll see that it has specific access:
GET /_xpack/security/role/kibana_dashboard_only_user
{
"kibana_dashboard_only_user" : {
"cluster" : [ ],
"indices" : [
{
"names" : [
".kibana*"
],
"privileges" : [
"read",
"view_index_metadata"
]
}
],
"run_as" : [ ],
"metadata" : {
"_reserved" : true
},
"transient_metadata" : {
"enabled" : true
}
}
}
Your test_dashboard_only_user
needs to grant that same access to .kibana
Hi, apparently I have the same accesses in the role test_dashboard_only_user
is rare
system
(system)
Closed
August 31, 2018, 7:32pm
4
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.