Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Ensure all restHeaders from ActionPlugin.getRestHeaders are carried to threadContext for tracing ([#5396](https://github.com/opensearch-project/security/pull/5396))
- Deprecate plugins.security.system_indices.indices ([#5775](https://github.com/opensearch-project/security/pull/5775))
- Allow overlap of static and custom security configs, but prefer static ([#5805](https://github.com/opensearch-project/security/pull/5805))
- Update read access to specific search-relevance indices ([#16167](https://github.com/opensearch-project/security/pull/5590))

### Features

Expand Down
8 changes: 7 additions & 1 deletion config/roles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ search_relevance_full_access:
- '*'
allowed_actions:
- 'indices:admin/mappings/get'
- 'indices:data/read/search*'
- 'indices:data/read/*'

# Allow users to read Search Relevance resources
search_relevance_read_access:
Expand All @@ -497,6 +497,12 @@ search_relevance_read_access:
- 'cluster:admin/opensearch/search_relevance/judgment/get'
- 'cluster:admin/opensearch/search_relevance/queryset/get'
- 'cluster:admin/opensearch/search_relevance/search_configuration/get'
index_permissions:
- index_patterns:
- 'search-relevance-*'
allowed_actions:
- 'indices:admin/mappings/get'
- 'indices:data/read/*'

# Allow users to read Forecast resources
forecast_read_access:
Expand Down
Loading