mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Fleet] Add o365audit, gcp-pubsup, and azure-eventhub as disallowed agentles inputs (#211262)
Closes https://github.com/elastic/kibana/issues/211092 ## Summary Disallows unsupported input types for security integrations adopting agentless. ### Checklist - [x] The PR description includes the appropriate Release Notes section, and the correct `release_note:*` label is applied per the [guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) cc @jamiehynds @qcorporation @kcreddy
This commit is contained in:
parent
c4826bdfbf
commit
46812bc00a
1 changed files with 10 additions and 1 deletions
|
@ -19,4 +19,13 @@ export const AGENTLESS_GLOBAL_TAG_NAME_TEAM = 'team';
|
|||
export const AGENTLESS_ALLOWED_OUTPUT_TYPES = [outputType.Elasticsearch];
|
||||
|
||||
// Input types to disable for agentless integrations
|
||||
export const AGENTLESS_DISABLED_INPUTS = ['tcp', 'udp', 'filestream', 'http_endpoint', 'winlog'];
|
||||
export const AGENTLESS_DISABLED_INPUTS = [
|
||||
'tcp',
|
||||
'udp',
|
||||
'filestream',
|
||||
'http_endpoint',
|
||||
'winlog',
|
||||
'o365audit',
|
||||
'gcp-pubsub',
|
||||
'azure-eventhub',
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue