allow no secret for static public clients
For statically-configured public clients it should be allowed for both Secret and SecretEnv fields to be empty.
This commit is contained in:
parent
0a85a97ba9
commit
c830d49884
@ -166,7 +166,7 @@ func serve(cmd *cobra.Command, args []string) error {
|
|||||||
}
|
}
|
||||||
c.StaticClients[i].ID = os.Getenv(client.IDEnv)
|
c.StaticClients[i].ID = os.Getenv(client.IDEnv)
|
||||||
}
|
}
|
||||||
if client.Secret == "" && client.SecretEnv == "" {
|
if client.Secret == "" && client.SecretEnv == "" && !client.Public {
|
||||||
return fmt.Errorf("invalid config: Secret or SecretEnv field is required for client %q", client.ID)
|
return fmt.Errorf("invalid config: Secret or SecretEnv field is required for client %q", client.ID)
|
||||||
}
|
}
|
||||||
if client.SecretEnv != "" {
|
if client.SecretEnv != "" {
|
||||||
|
Reference in New Issue
Block a user