mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Document sub-feature privileges (#62335)
* documenting sub-feature privileges * Apply suggestions from code review Co-Authored-By: gchaps <33642766+gchaps@users.noreply.github.com> * address PR feedback Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
This commit is contained in:
parent
3d6fd68eb2
commit
cc9c4113b2
3 changed files with 87 additions and 2 deletions
|
@ -43,6 +43,10 @@ Assigning a feature privilege grants access to a specific feature.
|
|||
`all`:: Grants full read-write access.
|
||||
`read`:: Grants read-only access.
|
||||
|
||||
===== Sub-feature privileges
|
||||
Some features allow for finer access control than the `all` and `read` privileges.
|
||||
This additional level of control is available in the Gold subscription level and higher.
|
||||
|
||||
===== Assigning feature privileges
|
||||
From the role management screen:
|
||||
|
||||
|
@ -62,7 +66,8 @@ PUT /api/security/role/my_kibana_role
|
|||
{
|
||||
"base": [],
|
||||
"feature": {
|
||||
"dashboard": ["all"]
|
||||
"visualize": ["all"],
|
||||
"dashboard": ["read", "url_create"]
|
||||
},
|
||||
"spaces": ["marketing"]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue