Skip to content

Commit 368b1a8

Browse files
Updating config schema.
1 parent 35cc3ec commit 368b1a8

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

config_schema.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,24 @@
11
{
22
"fields": [
3-
{
4-
"name": "orgs",
5-
"description": "Limit syncing to specific organizations.",
6-
"stringSliceField": {}
7-
},
8-
{
9-
"name": "otel-tracing-disabled",
10-
"description": "Disable OpenTelemetry tracing",
11-
"isOps": true,
12-
"boolField": {}
13-
},
143
{
154
"name": "sync-secrets",
165
"description": "Whether to sync secrets or not",
176
"boolField": {}
187
},
198
{
20-
"name": "otel-logging-disabled",
21-
"description": "Disable OpenTelemetry logging",
9+
"name": "otel-collector-endpoint-tls-insecure",
10+
"description": "Allow insecure connections to the OpenTelemetry collector",
2211
"isOps": true,
2312
"boolField": {}
2413
},
2514
{
26-
"name": "app-privatekey-path",
27-
"description": "Path to private key that is used to connect to the GitHub App",
15+
"name": "app-id",
16+
"description": "The GitHub App to connect to.",
2817
"stringField": {}
2918
},
3019
{
31-
"name": "otel-collector-endpoint",
32-
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
33-
"isOps": true,
20+
"name": "app-privatekey-path",
21+
"description": "Path to private key that is used to connect to the GitHub App",
3422
"stringField": {}
3523
},
3624
{
@@ -42,14 +30,15 @@
4230
}
4331
},
4432
{
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",
33+
"name": "otel-collector-endpoint",
34+
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
4735
"isOps": true,
4836
"stringField": {}
4937
},
5038
{
51-
"name": "token",
52-
"description": "The GitHub access token used to connect to the GitHub API.",
39+
"name": "otel-collector-endpoint-tls-cert-path",
40+
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
41+
"isOps": true,
5342
"stringField": {}
5443
},
5544
{
@@ -59,8 +48,8 @@
5948
"stringField": {}
6049
},
6150
{
62-
"name": "otel-collector-endpoint-tls-insecure",
63-
"description": "Allow insecure connections to the OpenTelemetry collector",
51+
"name": "otel-logging-disabled",
52+
"description": "Disable OpenTelemetry logging",
6453
"isOps": true,
6554
"boolField": {}
6655
},
@@ -70,8 +59,19 @@
7059
"stringField": {}
7160
},
7261
{
73-
"name": "app-id",
74-
"description": "The GitHub App to connect to.",
62+
"name": "otel-tracing-disabled",
63+
"description": "Disable OpenTelemetry tracing",
64+
"isOps": true,
65+
"boolField": {}
66+
},
67+
{
68+
"name": "orgs",
69+
"description": "Limit syncing to specific organizations.",
70+
"stringSliceField": {}
71+
},
72+
{
73+
"name": "token",
74+
"description": "The GitHub access token used to connect to the GitHub API.",
7575
"stringField": {}
7676
}
7777
],

0 commit comments

Comments
 (0)