This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from JupiterOne/INTS-86-move-questions-to-oss
Move J1 questions to open source
- Loading branch information
Showing
4 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Questions | ||
on: [pull_request_target] | ||
|
||
jobs: | ||
validate: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- id: setup-node | ||
name: Setup Node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14.x | ||
|
||
- name: Check out `main` branch | ||
uses: actions/checkout@v2 | ||
with: | ||
path: source | ||
|
||
- name: Check out target branch questions | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{github.event.pull_request.head.ref}} | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
path: target | ||
|
||
- name: Install dependencies for `main` branch | ||
run: yarn install --cwd source | ||
|
||
- name: Validate questions on target branch | ||
env: | ||
MANAGED_QUESTIONS_JUPITERONE_ACCOUNT_ID: ${{ secrets.MANAGED_QUESTIONS_JUPITERONE_ACCOUNT_ID }} | ||
MANAGED_QUESTIONS_JUPITERONE_API_KEY: ${{ secrets.MANAGED_QUESTIONS_JUPITERONE_API_KEY }} | ||
run: yarn --cwd source | ||
j1-integration validate-question-file | ||
-a $MANAGED_QUESTIONS_JUPITERONE_ACCOUNT_ID | ||
-k $MANAGED_QUESTIONS_JUPITERONE_API_KEY | ||
-p ../target/jupiterone/questions/questions.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
sourceId: managed:sentinelone | ||
integrationDefinitionId: "${integration_definition_id}" | ||
questions: | ||
- id: integration-question-sentinelone-agent-not-installed | ||
title: Which end-user devices do not have SentinelOne agent installed? | ||
description: | ||
Find all user endpoint devices not protected by SentinelOne agent. | ||
queries: | ||
- query: | | ||
Find (user_endpoint|workstation|laptop|desktop|computer) | ||
that !PROTECTS sentinelone_agent | ||
tags: | ||
- device | ||
- endpoint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters