-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappsettings.Development.json
66 lines (66 loc) · 1.54 KB
/
appsettings.Development.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Cms.BatCave.Sonar": "Debug"
}
},
"Database": {
"Host": "localhost"
},
"Okta": {
"OktaDomain": "https://impl.idp.idm.cms.gov",
"AuthorizationServerId": "auscal28z5MWVemkB297",
"Audience": "0oak4bxc9roSv6aLz297"
},
"Prometheus": {
"Host": "localhost"
},
"Alertmanager": {
"Host": "localhost"
},
"Security": {
"DefaultApiKey": "test+api+key+do+not+use+in+production+xxxxx="
},
"SonarHealthCheck": {
"SonarEnvironment": "sonar-local"
},
"WebHost": {
"AllowedOrigins": [ "http://localhost:3000", "http://localhost:8080" ],
"BindOptions": "Ipv4And6"
},
"Alerting": {
"ConfigSyncIntervalSeconds": 30
},
"LegacyEndpoint": {
"Enabled": true,
"ServiceMapping": [
{
"LegacyName": "metric-apps",
"DisplayName": "Legacy Metric Service Group",
"Children": [ "prometheus-metric-app", "loki-app" ]
},
{
"LegacyName": "prometheus-metric-app",
"Environment": "foo",
"Tenant": "baz",
"Name": "test-metric-app"
},
{
"LegacyName": "loki-app",
"DisplayName": "Synthetic Legacy App",
"Environment": "foo",
"Tenant": "baz",
"Name": "test-metric-app"
},
{
"LegacyName": "http-app",
"Environment": "foo",
"Tenant": "baz",
"Name": "http-metric-test-app"
}
],
"RootServices": ["metric-apps", "http-app"]
}
}