d2bff403bd
Enables default domain support using ldap. This change moves the ldap config to the default domain and enables domain specific drivers. Change-Id: I85f6610a25617fdea1fc216b53df0ab30260fed9 Cloes-Bug: 1447768
13 lines
286 B
Django/Jinja
13 lines
286 B
Django/Jinja
# LDAP configuration options
|
|
{% if keystone_ldap is defined %}
|
|
[identity]
|
|
driver = {{ keystone_ldap_identity_driver }}
|
|
|
|
{% for section in keystone_ldap|dictsort %}
|
|
[{{ section.0 }}]
|
|
{% for key, value in section.1.items() %}
|
|
{{ key }} = {{ value }}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endif %}
|