X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fkeystone%2Fexamples%2Fldap_identity.pp;fp=3rdparty%2Fmodules%2Fkeystone%2Fexamples%2Fldap_identity.pp;h=0000000000000000000000000000000000000000;hb=6eb028a997c0756fdd3d27a16297180db269631b;hp=41272c52f1485fae3ecfa6152e57bddafadeab4d;hpb=31a3a9671cd1bc17dba562dea642c62aff3bc7ef;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/keystone/examples/ldap_identity.pp b/3rdparty/modules/keystone/examples/ldap_identity.pp deleted file mode 100644 index 41272c52f..000000000 --- a/3rdparty/modules/keystone/examples/ldap_identity.pp +++ /dev/null @@ -1,28 +0,0 @@ -# Example using LDAP to manage user identity only. -# This setup will not allow changes to users. - -# Ensure this matches what is in LDAP or keystone will try to recreate -# the admin user -class { 'keystone::roles::admin': - email => 'test@example.com', - password => 'ChangeMe', -} - -# You can test this connection with ldapsearch first to ensure it works. -# This was tested against a FreeIPA box, you will likely need to change the -# attributes to match your configuration. -class { 'keystone:ldap': - identity_driver => 'keystone.identity.backends.ldap.Identity', - url => 'ldap://ldap.example.com:389', - user => 'uid=bind,cn=users,cn=accounts,dc=example,dc=com', - password => 'SecretPass', - suffix => 'dc=example,dc=com', - query_scope => 'sub', - user_tree_dn => 'cn=users,cn=accounts,dc=example,dc=com', - user_id_attribute => 'uid', - user_name_attribute => 'uid', - user_mail_attribute => 'mail', - user_allow_create => 'False', - user_allow_update => 'False', - user_allow_delete => 'False' -}