This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
generated from JupiterOne-Archives/integration-template
-
Notifications
You must be signed in to change notification settings - Fork 3
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 #54 from JupiterOne/sonarqube-filter-params-sdk-13.x
Sonarqube filter params sdk 13.x
- Loading branch information
Showing
26 changed files
with
5,132 additions
and
3,748 deletions.
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 |
---|---|---|
@@ -1,3 +1,24 @@ | ||
BASE_URL= | ||
API_TOKEN= | ||
ENABLE_FINDINGS_INGESTION= | ||
ENABLE_FINDINGS_INGESTION=true | ||
# [Optional] | ||
# INFO, MINOR -> LOW in API Version 2 | ||
# MAJOR -> MEDIUM in API Version 2 | ||
# CRITICAL BLOCKERS -> HIGH in API Version 2 | ||
FINDING_SEVERITIES=INFO,MINOR,MAJOR,CRITICAL,BLOCKER | ||
# [Optional] | ||
# OPEN -> OPEN in API Version 2 | ||
# CONFIRMED -> CONFIRMED' in API Version 2 | ||
# REOPENED -> FALSE_POSITIVE' in API Version 2 | ||
# RESOLVED -> ACCEPTED' in API Version 2 | ||
# CLOSED -> FIXED in API Version 2 | ||
FINDING_STATUS=OPEN,CONFIRMED,REOPENED,RESOLVED,CLOSED | ||
# [Optional] | ||
# To retrieve issues created during a time span before the current time (exclusive). | ||
# Example value: any number -> 30 60 90 ... | ||
FINDINGS_INGEST_SINCE_DAYS= | ||
# [Optional] | ||
# CODE_SMELL -> MAINTAINABILITY in API Version 2 | ||
# BUG -> RELIABILITY in API Version 2 | ||
# VULNERABILITY: SECURITY in API Version 2 | ||
FINDING_TYPES=CODE_SMELL,BUG,VULNERABILITY |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:14-alpine | ||
FROM node:18-alpine | ||
|
||
ENV JUPITERONE_INTEGRATION_DIR=/opt/jupiterone/integration | ||
|
||
|
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
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,25 @@ | ||
import { IntegrationIngestionConfigFieldMap } from '@jupiterone/integration-sdk-core'; | ||
import { INGESTION_SOURCE_IDS } from './steps/constants'; | ||
|
||
export const ingestionConfig: IntegrationIngestionConfigFieldMap = { | ||
[INGESTION_SOURCE_IDS.FINDINGS]: { | ||
title: 'Users', | ||
description: 'SonarQube Issues', | ||
defaultsToDisabled: false, | ||
}, | ||
[INGESTION_SOURCE_IDS.USERS]: { | ||
title: 'Users', | ||
description: 'SonarQube Users', | ||
defaultsToDisabled: false, | ||
}, | ||
[INGESTION_SOURCE_IDS.PROJECT]: { | ||
title: 'Projects', | ||
description: 'SonarQube Projects', | ||
defaultsToDisabled: false, | ||
}, | ||
[INGESTION_SOURCE_IDS.USER_GROUPS]: { | ||
title: 'User Groups', | ||
description: 'SonarQube Groups', | ||
defaultsToDisabled: false, | ||
}, | ||
}; |
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
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
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
Oops, something went wrong.