[Security Solution] Set the Get File feature flag to true by default (#149612)

## Summary

Sets the Get File feature flag to true by default in preparation for the
release of the feature.

### Checklist

- [x] [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

---------

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Kevin Logan 2023-01-27 12:35:03 -05:00 committed by GitHub
parent ce0ad6e42d
commit a0c689a8a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 2 deletions

View file

@ -79,7 +79,7 @@ export const allowedExperimentalValues = Object.freeze({
/**
* Enables the `get-file` endpoint response action
*/
responseActionGetFileEnabled: false,
responseActionGetFileEnabled: true,
/**
* Enables top charts on Alerts Page

View file

@ -14,7 +14,6 @@ const ExperimentalFeaturesServiceMock = {
get: jest.fn(() => {
const ff: ExperimentalFeatures = {
...allowedExperimentalValues,
responseActionGetFileEnabled: true,
};
return ff;

View file

@ -50,6 +50,7 @@ export default function ({ getService }: FtrProviderContext) {
'actions_log_management_read',
'host_isolation_all',
'process_operations_all',
'file_operations_all',
],
uptime: ['all', 'read', 'minimal_all', 'minimal_read'],
securitySolutionCases: ['all', 'read', 'minimal_all', 'minimal_read', 'cases_delete'],

View file

@ -120,6 +120,7 @@ export default function ({ getService }: FtrProviderContext) {
'read',
'trusted_applications_all',
'trusted_applications_read',
'file_operations_all',
],
uptime: ['all', 'read', 'minimal_all', 'minimal_read'],
securitySolutionCases: ['all', 'read', 'minimal_all', 'minimal_read', 'cases_delete'],