Skip to content

Commit

Permalink
[SecuritySolution][Endpoint] Enable scan response action on main/…
Browse files Browse the repository at this point in the history
… serverless (#190129)

> [!IMPORTANT]
> Merge this after 8.15.0 GA

## Summary

Enables `scan` response action on the `main` branch.

The same was enabled on `8.15` via /pull/187849

### 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
- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
  • Loading branch information
ashokaditya authored Aug 9, 2024
1 parent a049461 commit bccee8d
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 70 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const allowedExperimentalValues = Object.freeze({
/**
* Enables scan response action on Endpoint
*/
responseActionScanEnabled: false,
responseActionScanEnabled: true,

/**
* Enables new notes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ describe('When defining a kibana role for Endpoint security access', { tags: '@e
'Process Operations Perform process-related response actions in the response console.Process Operations sub-feature privilegeAllNone',
'File Operations Perform file-related response actions in the response console.File Operations sub-feature privilegeAllNone',
'Execute Operations Perform script execution response actions in the response console.Execute Operations sub-feature privilegeAllNone',
'Scan Operations Perform folder scan response actions in the response console.Scan Operations sub-feature privilegeAllNone',
]);
});

Expand Down

This file was deleted.

1 change: 1 addition & 0 deletions x-pack/test/api_integration/apis/security/privileges.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export default function ({ getService }: FtrProviderContext) {
'process_operations_all',
'file_operations_all',
'execute_operations_all',
'scan_operations_all',
],
uptime: ['all', 'read', 'minimal_all', 'minimal_read', 'elastic_managed_locations_enabled'],
securitySolutionAssistant: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export default function ({ getService }: FtrProviderContext) {
'trusted_applications_read',
'file_operations_all',
'execute_operations_all',
'scan_operations_all',
],
uptime: [
'all',
Expand Down

0 comments on commit bccee8d

Please sign in to comment.