Skip to content

Commit 0eadf60

Browse files
Updating config schema.
1 parent ead679f commit 0eadf60

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

config_schema.json

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
22
"fields": [
33
{
4-
"name": "otel-collector-endpoint",
5-
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
4+
"name": "otel-collector-endpoint-tls-cert",
5+
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
66
"isOps": true,
77
"stringField": {}
88
},
99
{
10-
"name": "otel-collector-endpoint-tls-insecure",
11-
"description": "Allow insecure connections to the OpenTelemetry collector",
12-
"isOps": true,
10+
"name": "sync-secrets",
11+
"description": "Whether to sync secrets or not",
1312
"boolField": {}
1413
},
1514
{
@@ -18,6 +17,24 @@
1817
"isOps": true,
1918
"boolField": {}
2019
},
20+
{
21+
"name": "log-level",
22+
"description": "The log level: debug, info, warn, error",
23+
"isOps": true,
24+
"stringField": {
25+
"defaultValue": "info"
26+
}
27+
},
28+
{
29+
"name": "orgs",
30+
"description": "Limit syncing to specific organizations.",
31+
"stringSliceField": {}
32+
},
33+
{
34+
"name": "app-id",
35+
"description": "The GitHub App to connect to.",
36+
"stringField": {}
37+
},
2138
{
2239
"name": "app-privatekey-path",
2340
"description": "Path to private key that is used to connect to the GitHub App",
@@ -30,18 +47,20 @@
3047
"stringField": {}
3148
},
3249
{
33-
"name": "token",
34-
"description": "The GitHub access token used to connect to the GitHub API.",
50+
"name": "otel-collector-endpoint",
51+
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
52+
"isOps": true,
3553
"stringField": {}
3654
},
3755
{
38-
"name": "sync-secrets",
39-
"description": "Whether to sync secrets or not",
56+
"name": "otel-collector-endpoint-tls-insecure",
57+
"description": "Allow insecure connections to the OpenTelemetry collector",
58+
"isOps": true,
4059
"boolField": {}
4160
},
4261
{
43-
"name": "app-id",
44-
"description": "The GitHub App to connect to.",
62+
"name": "token",
63+
"description": "The GitHub access token used to connect to the GitHub API.",
4564
"stringField": {}
4665
},
4766
{
@@ -54,25 +73,6 @@
5473
"name": "instance-url",
5574
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
5675
"stringField": {}
57-
},
58-
{
59-
"name": "otel-collector-endpoint-tls-cert",
60-
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
61-
"isOps": true,
62-
"stringField": {}
63-
},
64-
{
65-
"name": "orgs",
66-
"description": "Limit syncing to specific organizations.",
67-
"stringSliceField": {}
68-
},
69-
{
70-
"name": "log-level",
71-
"description": "The log level: debug, info, warn, error",
72-
"isOps": true,
73-
"stringField": {
74-
"defaultValue": "info"
75-
}
7676
}
7777
],
7878
"constraints": [

0 commit comments

Comments
 (0)