[Cloud Security] fix ingest pipeline for benchmark scores index (#166966)

## Summary

during the [ILM fix](https://github.com/elastic/kibana/pull/165317) for
serverless the default pipeline for the scores index was also changed by
mistake. Reverting this change


### Checklist

- [ ] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
This commit is contained in:
Maxim Kholod 2023-09-25 09:46:51 +02:00 committed by GitHub
parent 48d293f29a
commit c7f49c200c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,7 +77,7 @@ const createBenchmarkScoreIndex = async (
const settings: IndexTemplateSettings = {
index: {
default_pipeline: latestFindingsPipelineIngestConfig.id,
default_pipeline: scorePipelineIngestConfig.id,
},
lifecycle: { name: '' },
};