Hi,
my question is related to this post: Grant Users Permission to Save Visualizations
What are the exact permission settings to enable my users to save their visualizations?
My Role is:
{
"description": "test_role",
"cluster_permissions": [
"SGS_CLUSTER_ALL",
"SGS_CLUSTER_COMPOSITE_OPS",
"SGS_CLUSTER_COMPOSITE_OPS_RO",
"SGS_CLUSTER_MONITOR",
"cluster:monitor/main\""
],
"index_permissions": [
{
"index_patterns": [
"index-**"
],
"fls": [],
"masked_fields": [],
"allowed_actions": [
"SGS_INDICES_ALL",
"SGS_INDICES_MONITOR",
"SGS_READ",
"SGS_SEARCH",
"SGS_UNLIMITED",
"SGS_WRITE",
"indices:data/write/index"
]
}
],
"tenant_permissions": [
{
"allowed_actions": [
"SGS_SIGNALS_ALL"
],
"tenant_patterns": [
"SGS_GLOBAL_TENANT"
]
}
]
}
as you see I ended up granting all permissions available, but still the user is not able to save visualization. My testuser is mapped to the role test_role
and SGS_KIBANA_USER
{ message: "no permissions for [indices:data/write/index] and User [name=testuser, backend_roles=[], requestedTenant=null]: [security_exception] no permissions for [indices:data/write/index] and User [name=testuser, backend_roles=[], requestedTenant=null]", statusCode: 403, error: "Forbidden" }
What am I doing wrong?
Thank you