Skip to content

Commit b307126

Browse files
Updating config schema.
1 parent 79619da commit b307126

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,16 +1,9 @@
11
{
22
"fields": [
33
{
4-
"name": "otel-collector-endpoint-tls-cert-path",
5-
"description": "Path to a file containing 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": "otel-logging-disabled",
11-
"description": "Disable OpenTelemetry logging",
12-
"isOps": true,
13-
"boolField": {}
4+
"name": "orgs",
5+
"description": "Limit syncing to specific organizations.",
6+
"stringSliceField": {}
147
},
158
{
169
"name": "otel-collector-endpoint",
@@ -19,10 +12,15 @@
1912
"stringField": {}
2013
},
2114
{
22-
"name": "app-id",
23-
"description": "The GitHub App to connect to.",
15+
"name": "token",
16+
"description": "The GitHub access token used to connect to the GitHub API.",
2417
"stringField": {}
2518
},
19+
{
20+
"name": "sync-secrets",
21+
"description": "Whether to sync secrets or not",
22+
"boolField": {}
23+
},
2624
{
2725
"name": "log-level",
2826
"description": "The log level: debug, info, warn, error",
@@ -32,26 +30,11 @@
3230
}
3331
},
3432
{
35-
"name": "otel-tracing-disabled",
36-
"description": "Disable OpenTelemetry tracing",
33+
"name": "otel-collector-endpoint-tls-insecure",
34+
"description": "Allow insecure connections to the OpenTelemetry collector",
3735
"isOps": true,
3836
"boolField": {}
3937
},
40-
{
41-
"name": "orgs",
42-
"description": "Limit syncing to specific organizations.",
43-
"stringSliceField": {}
44-
},
45-
{
46-
"name": "token",
47-
"description": "The GitHub access token used to connect to the GitHub API.",
48-
"stringField": {}
49-
},
50-
{
51-
"name": "sync-secrets",
52-
"description": "Whether to sync secrets or not",
53-
"boolField": {}
54-
},
5538
{
5639
"name": "app-privatekey-path",
5740
"description": "Path to private key that is used to connect to the GitHub App",
@@ -64,15 +47,32 @@
6447
"stringField": {}
6548
},
6649
{
67-
"name": "otel-collector-endpoint-tls-insecure",
68-
"description": "Allow insecure connections to the OpenTelemetry collector",
50+
"name": "otel-collector-endpoint-tls-cert-path",
51+
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
6952
"isOps": true,
70-
"boolField": {}
53+
"stringField": {}
7154
},
7255
{
7356
"name": "instance-url",
7457
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
7558
"stringField": {}
59+
},
60+
{
61+
"name": "app-id",
62+
"description": "The GitHub App to connect to.",
63+
"stringField": {}
64+
},
65+
{
66+
"name": "otel-logging-disabled",
67+
"description": "Disable OpenTelemetry logging",
68+
"isOps": true,
69+
"boolField": {}
70+
},
71+
{
72+
"name": "otel-tracing-disabled",
73+
"description": "Disable OpenTelemetry tracing",
74+
"isOps": true,
75+
"boolField": {}
7676
}
7777
],
7878
"constraints": [

0 commit comments

Comments
 (0)