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
once the user is created, the password cannot be changed from terraform - Even after terraform apply the password is still the old one.
the password can be changed from authentik admin ui successfully
The text was updated successfully, but these errors were encountered:
resource "authentik_user" "tester-1" {
name = "Tester 1"
type = "internal"
username = "tester-1"
password = sensitive("password")
is_active = true
groups = [authentik_group.testers.id]
attributes = jsonencode({
managed = true
description = "for testing"
})
}
once the user is created, the password cannot be changed from terraform - Even after terraform apply the password is still the old one.
the password can be changed from authentik admin ui successfully
The text was updated successfully, but these errors were encountered: