Hello Cornelius,
yes, sure You can either use the “LDAP directory” module in the blue “Domain” category in the UMC and just “Add” an object of the type “Organizational Unit”:
Or you can use udm
for this, too:
udm container/ou create --set name=Berlin \
--set description="OU for users based in Berlin" \
--set userPath=1
Make sure to set userPath=1
. Otherwise the newly created OU will not show up in the dropdown as possible location when creating a new user via UMC.
Now you can simply specify a position when creating new users. E.g. for udm
:
udm users/user create \
--position "ou=Berlin,$(ucr get ldap/base)" \
--set username="mary" \
--set firstname="Mary" \
--set lastname="Somerville" \
--set password="SecretPassw0rd"
Or via UMC: