Ansible playbooks to setup a performance test against Keycloak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
456 B

dn: ou=users,dc=keycloak,dc=org
objectclass: top
objectclass: organizationalUnit
ou: users
{% for i in range(openldap_users_count) %}
{% set id = "%06d" |format(i) %}
dn: uid=user_{{ id }},ou=users,dc=keycloak,dc=org
objectclass: top
objectclass: person
objectclass: organizationalPerson
objectclass: inetOrgPerson
uid: user_{{ id }}
cn: User {{ id }}
sn: {{ id }}
givenName: User
mail: user_{{ id }}@nowhere.test
userPassword: user_{{ id }}
{% endfor %}