047e3b5c32
Horizon provides a password validation check, which OpenStack cloud operators can use to enforce password complexity checks for users within horizon. A dictionary containing a regular expression can be used for password validation with help text that is displayed if the password does not pass validation. HORIZON_CONFIG["password_validator"] = { "regex": '.*', ] "help_text": _("Your password does not meet the requirements."), } This change allows injection of the regex and help text into horizons local_settings file. Change-Id: If82a80ed6a8e6e65aecc2a25ee6d60640ae03c9a Related-Bug: #1640800
7 lines
261 B
YAML
7 lines
261 B
YAML
features:
|
|
- Making password_validator a configurable value
|
|
password_validator allows operators to use a
|
|
regular express to insure passwords are validated
|
|
for a certain criterion, which in turn allows
|
|
stronger security over password complexity
|