User Password Policy Args
data class UserPasswordPolicyArgs(val allowedFailedAttempts: Output<Int>? = null, val enableFailedAttemptsCheck: Output<Boolean>? = null, val enablePasswordVerification: Output<Boolean>? = null, val passwordExpirationDuration: Output<String>? = null, val statuses: Output<List<UserPasswordPolicyStatusArgs>>? = null) : ConvertibleToJava<UserPasswordPolicyArgs>
Properties
Link copied to clipboard
Number of failed attempts allowed before the user get locked.
Link copied to clipboard
If true, the check that will lock user after too many failed login attempts will be enabled.
Link copied to clipboard
If true, the user must specify the current password before changing the password. This flag is supported only for MySQL.
Link copied to clipboard
Password expiration duration with one week grace period.
Link copied to clipboard