Fix bad openstack command while registering IDP

This fixes a bug in registering identity providers

The bug was caused by a missing `=` in the openstack command

Add the missing `=` after `--os-user-domain-name`

Closes-Bug: #1959022
Change-Id: I73f80cd2c81a3944de0933e60f5768956a1a3b70
This commit is contained in:
Kevin Rasmussen 2022-01-25 09:19:11 -07:00 committed by Michal Nasiadka
parent d241a3dc8c
commit f955383b9c
2 changed files with 8 additions and 1 deletions
ansible/roles/keystone/tasks
releasenotes/notes

@ -147,7 +147,7 @@
--os-identity-api-version=3
--os-interface={{ openstack_interface }}
--os-system-scope={{ openstack_auth.system_scope }}
--os-user-domain-name{{ openstack_auth.user_domain_name }}
--os-user-domain-name={{ openstack_auth.user_domain_name }}
--os-region-name={{ openstack_region_name }}
{% if openstack_cacert != '' %}--os-cacert={{ openstack_cacert }}{% endif %}
identity provider create

@ -0,0 +1,7 @@
---
fixes:
- |
Fixes ``Register Identity Providers in OpenStack`` task
which was missing an `=` in the openstack command causing
the task to fail to register an IDP with Keystone.
`LP#1959022 <https://launchpad.net/bugs/1959022>`__