-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.powershell-client.json
More file actions
56 lines (56 loc) · 1.44 KB
/
appsettings.powershell-client.json
File metadata and controls
56 lines (56 loc) · 1.44 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
{
"SecureBootWatcher": {
"FleetId": "",
"RunMode": "Once",
"RegistryPollInterval": "00:30:00",
"EventQueryInterval": "00:30:00",
"EventLookbackPeriod": "1.00:00:00",
"EventChannels": [
"Microsoft-Windows-SecureBoot-Servicing/Operational",
"Microsoft-Windows-SecureBoot-State/Operational",
"System"
],
"Sinks": {
"ExecutionStrategy": "FirstSuccess",
"SinkPriority": "WebApi,FileShare",
"EnableFileShare": false,
"EnableAzureQueue": false,
"EnableWebApi": true,
"FileShare": {
"RootPath": "\\\\server\\share\\reports",
"FileExtension": ".json"
},
"AzureQueue": {
"QueueServiceUri": "",
"QueueName": "secureboot-reports",
"AuthenticationMethod": "ManagedIdentity"
},
"WebApi": {
"BaseAddress": "https://localhost:5001",
"IngestionRoute": "/api/SecureBootReports",
"HttpTimeout": "00:02:00"
}
},
"Commands": {
"EnableCommandProcessing": false,
"ProcessBeforeInventory": true,
"MaxCommandsPerCycle": 10,
"CommandExecutionDelay": "00:00:05",
"ContinueOnCommandFailure": true
}
},
"Logging": {
"LogLevel": {
"Default": "Information"
},
"Console": {
"Enabled": true
},
"File": {
"Enabled": true,
"Path": "logs/secureboot-watcher.log",
"RollingInterval": "Day",
"RetainedFileCountLimit": 30
}
}
}