-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathconfig-example.json
32 lines (29 loc) · 988 Bytes
/
config-example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"agency": "Department or Executive Agency ID",
"endpoints": [
{
"type": "github",
"organization": "Your bureau/agency organization on GitHub",
"username": "User with admin privileges for your organization on GitHub",
"password": "Password for admin user for your organization on GitHub",
"host": "api.github.com",
"exclude": [
"Project to be excluded",
"Another project to be excluded"
],
"minimumStatus": "Minimum status level to be included in inventory"
},
{
"type": "gitlab",
"organization": "Your bureau/agency team on GitLab",
"username": "User with admin privileges for your team on GitLab",
"password": "Password for admin user for your team on GitLab",
"host": "gitlab.com",
"exclude": [
"Project to be excluded",
"Another project to be excluded"
],
"minimumStatus": "Minimum status level to be included in inventory"
}
]
}