Merge "Fix bad openstack command while registering IDP"

This commit is contained in:
Zuul 2022-01-26 07:14:05 +00:00 committed by Gerrit Code Review
commit 941076eae4
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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>`__