-
Notifications
You must be signed in to change notification settings - Fork 5
Wip keycloak delete #345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Wip keycloak delete #345
Conversation
|
|
||
| for dex_user in dex_users: | ||
| if dex_user.username == user_name or dex_user.email == user_email: | ||
| logger.error(f"Failed to add user {to_log(user_name)} with email {to_log(user_email)}. User or email already exists.") |
Check failure
Code scanning / CodeQL
Log Injection High
user-provided value
This log entry depends on a
user-provided value
This log entry depends on a
user-provided value
This log entry depends on a
user-provided value
| ) | ||
|
|
||
| stub.CreatePassword(CreatePasswordReq(password=new_pwd)) | ||
| logger.info(f"Added {to_log(user_name)} user.") |
Check failure
Code scanning / CodeQL
Log Injection High
user-provided value
This log entry depends on a
user-provided value
| adminPort = mkOption { | ||
| type = types.port; | ||
| description = "Dex admin http port"; | ||
| }; | ||
|
|
||
| adminAddress = mkOption { | ||
| type = types.str; | ||
| default = "127.0.0.1"; | ||
| description = "Dex admin bind address"; | ||
| }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if it's supported: default = cfg.port / cfg.address to default with the same ?
No description provided.