Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/integration_tests/test-issue-tracker-config1.yaml
2061 views
1
allow-list:
2
severity: high, critical
3
deny-list:
4
severity: low
5
6
# GitHub contains configuration options for GitHub issue tracker
7
github:
8
# base-url is the optional self-hosted GitHub application url
9
base-url: https://localhost:8443/github
10
# username is the username of the GitHub user
11
username: test-username
12
# owner is the owner name of the repository for issues
13
owner: test-owner
14
# token is the token for GitHub account
15
token: test-token
16
# project-name is the name of the repository
17
project-name: test-project
18
# issue-label is the label of the created issue type
19
issue-label: bug
20
21
# GitLab contains configuration options for gitlab issue tracker
22
gitlab:
23
# base-url is the optional self-hosted GitLab application url
24
base-url: https://localhost:8443/gitlab
25
# username is the username of the GitLab user
26
username: test-username
27
# token is the token for GitLab account
28
token: test-token
29
# project-name is the name/id of the project(repository)
30
project-name: "1234"
31
# issue-label is the label of the created issue type
32
issue-label: bug
33
34
# Jira contains configuration options for Jira issue tracker
35
jira:
36
# cloud is the boolean which tells if Jira instance is running in the cloud or on-prem version is used
37
cloud: true
38
# update-existing is the boolean which tells if the existing, opened issue should be updated or new one should be created
39
update-existing: false
40
# URL is the jira application url
41
url: https://localhost/jira
42
# account-id is the account-id of the Jira user or username in case of on-prem Jira
43
account-id: test-account-id
44
# email is the email of the user for Jira instance
45
email: test@test.com
46
# token is the token for Jira instance or password in case of on-prem Jira
47
token: test-token
48
# project-name is the name of the project.
49
project-name: test-project-name
50
# issue-type is the name of the created issue type
51
issue-type: bug
52
53
# elasticsearch contains configuration options for elasticsearch exporter
54
elasticsearch:
55
# IP for elasticsearch instance
56
ip: 127.0.0.1
57
# Port is the port of elasticsearch instance
58
port: 9200
59
# IndexName is the name of the elasticsearch index
60
index-name: nuclei
61
# SSL enables ssl for elasticsearch connection
62
ssl: false
63
# SSLVerification disables SSL verification for elasticsearch
64
ssl-verification: false
65
# Username for the elasticsearch instance
66
username: test
67
# Password is the password for elasticsearch instance
68
password: test
69
70