Skip to content

Commit

Permalink
put a minimum on secret size
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed Apr 28, 2024
1 parent 4673798 commit 57391fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/types/runtimeConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export const serverConfig = serviceUrls.merge(
export const runtimeConfig = z.object({
public: serviceUrls,
serverSide: serverConfig,
backendKeycloakClientSecret: z.string(),
backendKeycloakClientSecret: z.string().min(5),
});
export type RuntimeConfig = z.infer<typeof runtimeConfig>;

0 comments on commit 57391fa

Please sign in to comment.