Skip to content

Commit

Permalink
bugfix: Rm bad characters
Browse files Browse the repository at this point in the history
  • Loading branch information
alukach committed Oct 31, 2024
1 parent fbfbcb2 commit cfec520
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deploy/lib/KeycloakConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ export class KeycloakConfig extends Construct {
includeSpace: false,
secretStringTemplate: JSON.stringify({
id: clientSlug,
auth_url: `${props.hostname}/realms/${realm}/protocol/openid-connect/auth",`,
token_url: `${props.hostname}/realms/${realm}/protocol/openid-connect/token",`,
userinfo_url: `${props.hostname}/realms/${realm}/protocol/openid-connect/userinfo",`,
auth_url: `${props.hostname}/realms/${realm}/protocol/openid-connect/auth`,
token_url: `${props.hostname}/realms/${realm}/protocol/openid-connect/token`,
userinfo_url: `${props.hostname}/realms/${realm}/protocol/openid-connect/userinfo`,
}),
generateStringKey: "secret",
passwordLength: 16,
Expand Down

0 comments on commit cfec520

Please sign in to comment.