Skip to content

Commit 3863ebd

Browse files
Updating config schema.
1 parent 0eadf60 commit 3863ebd

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

config_schema.json

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,61 @@
11
{
22
"fields": [
3-
{
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",
6-
"isOps": true,
7-
"stringField": {}
8-
},
9-
{
10-
"name": "sync-secrets",
11-
"description": "Whether to sync secrets or not",
12-
"boolField": {}
13-
},
143
{
154
"name": "otel-tracing-disabled",
165
"description": "Disable OpenTelemetry tracing",
176
"isOps": true,
187
"boolField": {}
198
},
209
{
21-
"name": "log-level",
22-
"description": "The log level: debug, info, warn, error",
10+
"name": "otel-collector-endpoint",
11+
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
2312
"isOps": true,
24-
"stringField": {
25-
"defaultValue": "info"
26-
}
13+
"stringField": {}
2714
},
2815
{
29-
"name": "orgs",
30-
"description": "Limit syncing to specific organizations.",
31-
"stringSliceField": {}
16+
"name": "token",
17+
"description": "The GitHub access token used to connect to the GitHub API.",
18+
"stringField": {}
19+
},
20+
{
21+
"name": "app-privatekey-path",
22+
"description": "Path to private key that is used to connect to the GitHub App",
23+
"stringField": {}
3224
},
3325
{
3426
"name": "app-id",
3527
"description": "The GitHub App to connect to.",
3628
"stringField": {}
3729
},
3830
{
39-
"name": "app-privatekey-path",
40-
"description": "Path to private key that is used to connect to the GitHub App",
41-
"stringField": {}
31+
"name": "otel-collector-endpoint-tls-insecure",
32+
"description": "Allow insecure connections to the OpenTelemetry collector",
33+
"isOps": true,
34+
"boolField": {}
4235
},
4336
{
44-
"name": "otel-collector-endpoint-tls-cert-path",
45-
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
37+
"name": "log-level",
38+
"description": "The log level: debug, info, warn, error",
4639
"isOps": true,
47-
"stringField": {}
40+
"stringField": {
41+
"defaultValue": "info"
42+
}
4843
},
4944
{
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)",
45+
"name": "otel-collector-endpoint-tls-cert-path",
46+
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
5247
"isOps": true,
5348
"stringField": {}
5449
},
5550
{
56-
"name": "otel-collector-endpoint-tls-insecure",
57-
"description": "Allow insecure connections to the OpenTelemetry collector",
58-
"isOps": true,
51+
"name": "sync-secrets",
52+
"description": "Whether to sync secrets or not",
5953
"boolField": {}
6054
},
6155
{
62-
"name": "token",
63-
"description": "The GitHub access token used to connect to the GitHub API.",
56+
"name": "otel-collector-endpoint-tls-cert",
57+
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
58+
"isOps": true,
6459
"stringField": {}
6560
},
6661
{
@@ -69,6 +64,11 @@
6964
"isOps": true,
7065
"boolField": {}
7166
},
67+
{
68+
"name": "orgs",
69+
"description": "Limit syncing to specific organizations.",
70+
"stringSliceField": {}
71+
},
7272
{
7373
"name": "instance-url",
7474
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",

0 commit comments

Comments
 (0)