Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
.env-example file updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Bharatkk-metron committed Jul 26, 2024
1 parent 14cd308 commit 021914c
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
BASE_URL=
API_TOKEN=
ENABLE_FINDINGS_INGESTION=true/false
SEVERITIES=INFO,MINOR,MAJOR,CRITICAL,BLOCKER

# JUST FOR INFO:
# INFO, MINOR -> LOW in API Version 2
# MAJOR -> MEDIUM in API Version 2
# CRITICAL BLOCKERS -> HIGH in API Version 2
SEVERITIES=INFO,MINOR,MAJOR,CRITICAL,BLOCKER # 0 or more values you can pass from given values

# JUST FOR INFO:
# 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
STATUS=OPEN,CONFIRMED,REOPENED,RESOLVED,CLOSED # 0 or more values you can pass from given values
CREATED_IN_LAST=10d # default value is 10 days

#createdInLast: optional
#To retrieve issues created during a time span before the current time (exclusive). Accepted units are 'y' for year, 'm' for month, 'w' for week and 'd' for day. If this parameter is set, createdAfter must not be set
# Example value: 1m2w (1 month 2 weeks)
TYPES=CODE_SMELL,BUG,VULNERABILITY # 0 or more values you can pass from given values
CREATED_IN_LAST=10d # default value is 10 days

# JUST FOR INFO:
# CODE_SMELL -> MAINTAINABILITY in API Version 2
# BUG -> RELIABILITY in API Version 2
# VULNERABILITY: SECURITY in API Version 2
TYPES=CODE_SMELL,BUG,VULNERABILITY # 0 or more values you can pass from given values

0 comments on commit 021914c

Please sign in to comment.