Bug 1566612
Summary: | Suboptimal wait_condition_handle password generator | ||
---|---|---|---|
Product: | Red Hat OpenStack | Reporter: | Zane Bitter <zbitter> |
Component: | openstack-heat | Assignee: | Zane Bitter <zbitter> |
Status: | CLOSED ERRATA | QA Contact: | Ronnie Rasouli <rrasouli> |
Severity: | high | Docs Contact: | |
Priority: | high | ||
Version: | 13.0 (Queens) | CC: | astupnik, jschluet, mburns, ramishra, rhel-osp-director-maint, rrasouli, sbaker, shardy, srevivo, therve |
Target Milestone: | beta | Keywords: | Triaged |
Target Release: | 13.0 (Queens) | ||
Hardware: | All | ||
OS: | All | ||
Whiteboard: | |||
Fixed In Version: | openstack-heat-10.0.1-0.20180404165313.825731d.el7ost | Doc Type: | If docs needed, set a value |
Doc Text: | Story Points: | --- | |
Clone Of: | 1566611 | Environment: | |
Last Closed: | 2018-06-27 13:50:58 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | 1556946, 1566607, 1566611 | ||
Bug Blocks: |
Description
Zane Bitter
2018-04-12 15:30:26 UTC
Patch is merged in upstream stable/queens branch. I was able to verify with wait condition and keystone regex compliance policy. password_regex = ^(?=.*\d)(?=.*[a-zA-Z]).{7,}$ (In reply to Ronnie Rasouli from comment #6) > I was able to verify with wait condition and keystone regex compliance > policy. > > password_regex = ^(?=.*\d)(?=.*[a-zA-Z]).{7,}$ That policy only checks that the password has at least one letter and one digit (which ~all UUIDs do anyway, so it would have passed before the fix too). A more representative test might be something like: password_regex = ^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*]).{7,}$ Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHEA-2018:2086 |