Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
service: exchange-online-logfile
input: logfile
vars:
local_domains:
- "contoso.com"
data_stream:
vars:
preserve_original_event: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
input: httpjson
service: mimecast
vars:
api_key: test
app_key: test
app_id: test
access_key: xxxx
secret_key: xxxx
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
input: httpjson
service: mimecast
vars:
api_key: test
app_key: test
app_id: test
access_key: xxxx
secret_key: xxxx
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
input: httpjson
service: mimecast
vars:
api_key: test
app_key: test
app_id: test
access_key: xxxx
secret_key: xxxx
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
input: httpjson
service: mimecast
vars:
api_key: test
app_key: test
app_id: test
access_key: xxxx
secret_key: xxxx
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
input: httpjson
service: mimecast
vars:
api_key: test
app_key: test
app_id: test
access_key: xxxx
secret_key: xxxx
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
input: httpjson
service: mimecast
vars:
api_key: test
app_key: test
app_id: test
access_key: xxxx
secret_key: xxxx
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
input: httpjson
service: mimecast
vars:
api_key: test
app_key: test
app_id: test
access_key: xxxx
secret_key: xxxx
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
input: httpjson
service: mimecast
vars:
api_key: test
app_key: test
app_id: test
access_key: xxxx
secret_key: xxxx
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
input: httpjson
service: mimecast
vars:
api_key: test
app_key: test
app_id: test
access_key: xxxx
secret_key: xxxx
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ vars:
client_secret: eweqweqwqew
api_host: http://{{Hostname}}:{{Port}}
token_url: http://{{Hostname}}:{{Port}}/oauth/token

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🟡 MEDIUM Undefined variable 'token_url' may cause validation error

Why: The 'token_url' variable is not defined in the package manifest. With the stricter simplified Fleet API validation, undefined variables may cause errors. The token URL is hardcoded in the CEL template as '{{api_host}}/oauth/token', so this test config variable serves no purpose.

Suggested change
token_url: http://{{Hostname}}:{{Port}}/oauth/token
input: cel
service: sailpoint
vars:
api_version: v2025
client_id: qwerty
client_secret: eweqweqwqew
api_host: http://{{Hostname}}:{{Port}}
token_scopes:
- sp:scopes:all
data_stream:
vars:
limit: 2
tags:
- forwarded
assert:
hit_count: 3

Why is Claude responding? | Type @claude to interact further

Give us feedback! React with 🚀 if perfect, 👍 if helpful, 👎 if not.

token_scopes:
- sp:scopes:all
data_stream:
vars:
limit: 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ data_stream:
url: http://{{Hostname}}:{{Port}}/blacklist/ja3_fingerprints.csv
preserve_original_event: true
vars:
auth_key: test_auth_key
enable_request_tracer: true
assert:
hit_count: 10
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
input: cel
service: opencti_stub
# The simplified Fleet API coerces string "false"/"true" to booleans before
# reaching the select-type validation, so "false" fails include() against the
# string options. Force the legacy API until Fleet fixes the schema ordering.
# See https://github.com/elastic/kibana/issues/255976
policy_api_format: legacy

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

vars:
url: http://{{Hostname}}:{{Port}}
api_key: test_api_key
Expand Down