Sha256: 49b57fe2981c564269016c01714216f982a745a88ea6483894cbe5d34d6a38bf
Contents?: true
Size: 1.76 KB
Versions: 6
Compression:
Stored size: 1.76 KB
Contents
--- # LDAP connections connections: example_connection_1: username: "cn=Directory Manager" password: "password" host: ldap.yourdomain.com port: 389 basedn: "ou=smallpeople,ou=qa,dc=socialcast,dc=com" filter: "(mail=*)" example_connection_2: username: "cn=Directory Manager" password: "password" host: ldap.yourdomain.com port: 389 basedn: "ou=tinypeople,ou=qa,dc=yourdomain,dc=com" filter: "(mail=*)" example_encrypted_connection: username: "cn=Directory Manager" password: "password" host: ldap.yourdomain.com port: 389 basedn: "ou=largepeople,ou=qa,dc=yourdomain,dc=com" filter: "(mail=*)" encryption: simple_tls # LDAP attribute mappings mappings: first_name: givenName last_name: sn email: mail # only use employee_number if the email is unknown # employee_number: emp_id # only use unique_identifier if you do not wish to use email as the main user identification method # unique_identifier: samaccountname # Map LDAP Group Memberships to Socialcast Permissions permission_mappings: # configure LDAP field for group memberships (ex: memberof, isMemberOf, etc) attribute_name: memberof account_types: external: "cn=External,dc=example,dc=com" roles: tenant_admin: "cn=Admins,dc=example,dc=com" sbi_admin: "cn=Admins,dc=example,dc=com" reach_admin: "cn=Admins,dc=example,dc=com" town_hall_admin: "cn=Admins,dc=example,dc=com" # general script options options: # cleanup the extracted ldap data file after run is complete delete_users_file: false # skip sending emails to newly activated users skip_emails: true # do not actually provision accounts # useful during testing test: true # http options for connecting to Socialcast servers http: timeout: 660
Version data entries
6 entries across 6 versions & 1 rubygems