Password Validation Policy Args
data class PasswordValidationPolicyArgs(val complexity: Output<PasswordValidationPolicyComplexity>? = null, val disallowUsernameSubstring: Output<Boolean>? = null, val enablePasswordPolicy: Output<Boolean>? = null, val minLength: Output<Int>? = null, val passwordChangeInterval: Output<String>? = null, val reuseInterval: Output<Int>? = null) : ConvertibleToJava<PasswordValidationPolicyArgs>
Database instance local user password validation policy
Properties
Link copied to clipboard
The complexity of the password.
Link copied to clipboard
Disallow username as a part of the password.
Link copied to clipboard
Whether the password policy is enabled or not.
Link copied to clipboard
Minimum interval after which the password can be changed. This flag is only supported for PostgreSQL.
Link copied to clipboard
Number of previous passwords that cannot be reused.