Skip to content

Commit aaf5026

Browse files
committed
fix config file
1 parent 1444fc2 commit aaf5026

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

pkg/config/config.go

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,12 @@ var (
2222
"sync-secrets",
2323
field.WithDescription(`Whether to sync secrets or not`),
2424
)
25-
26-
// configuration defines the external configuration required for the connector to run.
27-
configuration = field.Configuration{
28-
Fields: []field.SchemaField{
29-
accessTokenField,
30-
orgsField,
31-
instanceUrlField,
32-
syncSecrets,
33-
},
34-
}
3525
)
3626

3727
//go:generate go run ./gen
3828
var Config = field.NewConfiguration([]field.SchemaField{
3929
accessTokenField,
4030
orgsField,
4131
instanceUrlField,
32+
syncSecrets,
4233
})

0 commit comments

Comments
 (0)