Skip to content

Commit 3f975a7

Browse files
automate list (#32017)
1 parent dab82b3 commit 3f975a7

File tree

2 files changed

+25
-21
lines changed

2 files changed

+25
-21
lines changed

content/en/security/cloud_siem/ingest_and_enrich/open_cybersecurity_schema_framework.md

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -63,27 +63,7 @@ You can optionally add extensions, such as new attributes, objects, categories,
6363

6464
The following Log Management integrations support out-of-the-box OCSF pipelines:
6565

66-
- 1Password
67-
- Auth0
68-
- AWS CloudTrail
69-
- Cisco Duo
70-
- Cisco Meraki
71-
- Cloudflare
72-
- CrowdStrike
73-
- GitHub Telemetry
74-
- Google BigQuery
75-
- Google Cloud
76-
- Google GKE cluster audit logs
77-
- Google Pub Sub
78-
- Google GSuite
79-
- JumpCloud
80-
- Kubernetes audit logs
81-
- LastPass
82-
- Microsoft 365
83-
- Okta
84-
- Salesforce
85-
- Slack
86-
- Snowflake Web Logs
66+
{{% cloud-siem-supported-ocsf %}}
8767

8868
## View Security Pipelines \- OCSF
8969

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{{/*
2+
Displays the integrations that include support for OCSF pipelines ootb.
3+
*/}}
4+
5+
{{ $data := $.Site.Data.cloud_siem_content_packs }}
6+
7+
{{ $s := newScratch }}
8+
{{ $s.Set "sorted_data" slice }}
9+
10+
{{- if ne $data nil -}}
11+
{{- range $category, $content_packs := $data -}}
12+
{{- range $content_packs -}}
13+
{{- if .ocsf_pipelines -}}
14+
{{ $s.Add "sorted_data" .name }}
15+
{{- end -}}
16+
{{- end -}}
17+
{{- end -}}
18+
19+
<ul>
20+
{{- range sort ($s.Get "sorted_data") -}}
21+
<li>{{ . }}</li>
22+
{{- end -}}
23+
</ul>
24+
{{- end -}}

0 commit comments

Comments
 (0)