Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

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/entityanalytics_ad/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: Expose user and group attribute configurations to the user.
type: enhancement
link: https://github.com/elastic/integrations/pull/10955
- version: "0.3.2"
changes:
- description: Don't leak collection implementation details.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ ad_base_dn: {{ad_base_dn}}
ad_url: {{ad_url}}
ad_user: {{ad_user}}
ad_password: {{ad_password}}
{{#if user_attributes}}
user_attributes:
{{#each user_attributes as |attr|}}
- {{attr}}
{{/each}}
{{/if}}
{{#if group_attributes}}
group_attributes:
{{#each group_attributes as |attr|}}
- {{attr}}
{{/each}}
{{/if}}
{{#if paging_size}}
ad_paging_size: {{paging_size}}
{{/if}}
Expand Down
18 changes: 18 additions & 0 deletions packages/entityanalytics_ad/data_stream/user/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,24 @@ streams:
multi: false
required: false
show_user: false
- name: user_attributes
type: text
title: User Attributes
description: >-
User attributes to request from the AD server (all if not set). Attribute names should be obtained from the
AD server rather than from the fields within ingested documents, as fields are renamed during ingest.
multi: true
required: false
show_user: false
- name: group_attributes
type: text
title: Group Attributes
description: >-
Group attributes to request from the AD server (all if not set). Attribute names should be obtained from the
AD server rather than from the fields within ingested documents, as fields are renamed during ingest.
multi: true
required: false
show_user: false
- name: tags
type: text
title: Tags
Expand Down
4 changes: 2 additions & 2 deletions packages/entityanalytics_ad/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
format_version: "3.0.2"
name: entityanalytics_ad
title: Active Directory Entity Analytics
version: "0.3.2"
version: "0.4.0"
description: "Collect User Identities from Active Directory Entity with Elastic Agent."
type: integration
categories:
- security
conditions:
kibana:
version: "^8.14.0"
version: "^8.16.0"
elastic:
subscription: "basic"
screenshots: []
Expand Down