You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if the password of the user could be set as an hashed value.
Allowing to setup passwords for users, without actually sharing the clear text passwords.
It would be great if the password of the user could be set as an hashed value.
Allowing to setup passwords for users, without actually sharing the clear text passwords.
resource "authentik_user" "name" {
username = "user"
name = "User"
hashed_pw = "$argon2i$v=19$m=16,t=2,p=1$ZGxhc2toZDEzemRoZ3F3$hh/ocnBbnZb2T+brwfDlhg"
}
This allows to setup Default Passwords for several users, without sharing the clear passwords with the administrator.
The text was updated successfully, but these errors were encountered: