-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.json
More file actions
58 lines (58 loc) · 1.6 KB
/
configuration.json
File metadata and controls
58 lines (58 loc) · 1.6 KB
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
48
49
50
51
52
53
54
55
56
57
58
[
{
"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
}
},
{
"key": "retentionPeriod",
"type": "input",
"defaultValue": "365",
"templateOptions": {
"label": "Retention Period (days)",
"placeholder": "365",
"description": "The number of days a deleted value should remain blocked. After this period, the value can be reused. Use 999999 for no retention limit.",
"required": true
}
}
]