-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.json
47 lines (47 loc) · 1.24 KB
/
configuration.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[
{
"key": "connectionString",
"type": "input",
"defaultValue": "Server=<server>;Database=<database>;Integrated Security=True;",
"templateOptions": {
"label": "Connection string",
"placeholder": "Server=<server>;Database=<database>;Integrated Security=True;",
"description": "The connection string used to connect to the SQL database",
"required": true
}
},
{
"key": "table",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Table",
"placeholder": "blacklist",
"description": "The table in which the blacklist values reside",
"required": true
}
},
{
"key": "username",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Username",
"placeholder": "sa_helloid",
"description": "Optional: The username of the SQL user to use in the connection string",
"required": false
}
},
{
"key": "password",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Password",
"type": "password",
"placeholder": "P@ssw0rd1!",
"description": "Optional: The username of the SQL user to use in the connection string",
"required": false
}
}
]