PasswordPolicyConfig interface

A password policy configuration for a project or tenant

Signature:

export interface PasswordPolicyConfig 

Properties

Property Type Description
constraints CustomStrengthOptionsConfig The constraints that make up the password strength policy
enforcementState PasswordPolicyEnforcementState Enforcement state of the password policy
forceUpgradeOnSignin boolean Require users to have a policy-compliant password to sign in

PasswordPolicyConfig.constraints

The constraints that make up the password strength policy

Signature:

constraints?: CustomStrengthOptionsConfig;

PasswordPolicyConfig.enforcementState

Enforcement state of the password policy

Signature:

enforcementState?: PasswordPolicyEnforcementState;

PasswordPolicyConfig.forceUpgradeOnSignin

Require users to have a policy-compliant password to sign in

Signature:

forceUpgradeOnSignin?: boolean;