Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

microsoft_sentinel: Add agentless deployment #12586

Merged
merged 8 commits into from
Mar 5, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/microsoft_sentinel/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "0.4.0"
changes:
- description: Add support for agentless deployment.
type: enhancement
link: https://github.com/elastic/integrations/pull/12586
- version: "0.3.0"
changes:
- description: Add "preserve_original_event" tag to documents with `event.kind` manually set to "pipeline_error".
Expand Down
10 changes: 9 additions & 1 deletion packages/microsoft_sentinel/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 3.2.1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@seanrathier this is the correct format version, right?

Suggested change
format_version: 3.2.1
format_version: 3.2.3

https://github.com/elastic/package-spec/blob/964c4a69e024cc464c4808720ba0db9f001a82a7/spec/changelog.yml#L46-L53

Copy link
Contributor

@seanrathier seanrathier Feb 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, 3.2.3 is the most recent version that includes the is_default property.

https://github.com/elastic/integrations/blob/main/packages/cloud_security_posture/manifest.yml#L110

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

version 3.2.3 also included the agentless agent resource options.

https://github.com/elastic/package-spec/blob/main/spec/integration/manifest.spec.yml#L211

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you! Updated to 3.2.3

name: microsoft_sentinel
title: Microsoft Sentinel
version: 0.3.0
version: 0.4.0
description: Collect logs from Microsoft Sentinel with Elastic Agent.
type: integration
categories:
Expand Down Expand Up @@ -35,6 +35,14 @@ policy_templates:
- name: microsoft_sentinel
title: Microsoft Sentinel Logs
description: Collect logs from Microsoft Sentinel.
deployment_modes:
default:
enabled: true
agentless:
enabled: true
organization: security
division: engineering
team: security-service-integrations
inputs:
- type: cel
title: Collect Microsoft Sentinel logs via API
Expand Down