mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Security Solution] Fix old siem feature override (#207333)
## Summary Adds the feature override for the old `siem` feature as well, we changed that to the new one here https://github.com/elastic/kibana/pull/201780/files#diff-5aba630e58630c087c90368aa97296afb736f62579a23285cef901dc1c3921edR27 Related failure: https://github.com/elastic/kibana/issues/207285 The problem happened because MKI tests are using the outdated roles definition with the old `feature_siem` which was lacking the feature override in the serverless.security.yml Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
parent
6b9d90ef59
commit
9077414852
1 changed files with 27 additions and 0 deletions
|
@ -50,6 +50,33 @@ xpack.features.overrides:
|
|||
- feature: "maps"
|
||||
privileges: [ "read" ]
|
||||
|
||||
### Security's feature privileges are fine-tuned to grant access to Discover, Dashboard, Maps, and Visualize apps.
|
||||
siem:
|
||||
privileges:
|
||||
### Security's `All` feature privilege should implicitly grant `All` access to Discover, Dashboard, Maps, and
|
||||
### Visualize features.
|
||||
all.composedOf:
|
||||
- feature: "discover"
|
||||
privileges: [ "all" ]
|
||||
- feature: "dashboard"
|
||||
privileges: [ "all" ]
|
||||
- feature: "visualize"
|
||||
privileges: [ "all" ]
|
||||
- feature: "maps"
|
||||
privileges: [ "all" ]
|
||||
# Security's `Read` feature privilege should implicitly grant `Read` access to Discover, Dashboard, Maps, and
|
||||
# Visualize features. Additionally, it should implicitly grant privilege to create short URLs in Discover,
|
||||
### Dashboard, and Visualize apps.
|
||||
read.composedOf:
|
||||
- feature: "discover"
|
||||
privileges: [ "read" ]
|
||||
- feature: "dashboard"
|
||||
privileges: [ "read" ]
|
||||
- feature: "visualize"
|
||||
privileges: [ "read" ]
|
||||
- feature: "maps"
|
||||
privileges: [ "read" ]
|
||||
|
||||
## Cloud settings
|
||||
xpack.cloud.serverless.project_type: security
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue