openstack-ansible/releasenotes/notes/keystone_user_and_project_support-e35b0b335b6522e9.yaml
Jesse Pretorius bb69b667f0 Update all SHAs for Newton-1 2016-06-02
This patch updates all the roles to the latest available SHA's,
updates all the OpenStack Service SHA's and also updates the
appropriate python requirements pins.

Change-Id: Ifc77c02d456500651e8adcaf9338f81601e2c148
2016-06-02 21:05:45 +00:00

42 lines
1.1 KiB
YAML

---
features:
- |
The ability to support login user domain and login project domain has been added to the
keystone module.
::
# Example usage
- keystone:
command: ensure_user
endpoint: "{{ keystone_admin_endpoint }}"
login_user: admin
login_password: admin
login_project_name: admin
login_user_domain_name: custom
login_project_domain_name: custom
user_name: demo
password: demo
project_name: demo
domain_name: custom
fixes:
- |
The ability to support login user domain and login project domain has been added to the
keystone module. This resolves https://bugs.launchpad.net/openstack-ansible/+bug/1574000
::
# Example usage
- keystone:
command: ensure_user
endpoint: "{{ keystone_admin_endpoint }}"
login_user: admin
login_password: admin
login_project_name: admin
login_user_domain_name: custom
login_project_domain_name: custom
user_name: demo
password: demo
project_name: demo
domain_name: custom