Hi,
I am using LDAP authentication over grafana. when i create the new organisation, it is not letting me add new users and i have only one option invite users with email id and it doesnt sync with LDAP. Also when users logged into grafana they login to default/main org. and i dont see that users in the new organisation.
my ldap.toml config below
Specify names of the ldap attributes your ldap uses
[servers.attributes]
name = “givenName”
surname = “sn”
username = “cn”
#member_of = “sAMAccountName”
member_of = “memberOf”
email = “email”
Map ldap groups to grafana org roles
[[servers.group_mappings]]
group_dn = “cn=admins,dc=grafana,dc=org”
org_role = “Admin”
The Grafana organization database id, optional, if left out the default org (id 1) will be used
#;org_id = 1
#;grafana_admin = true
auto_assign_org = true
[[servers.group_mappings]]
group_dn = “cn=users,dc=grafana,dc=org”
org_role = “Editor”
[[servers.group_mappings]]
If you want to match all (or no ldap groups) then you can use wildcard
group_dn = “*”
org_role = “Viewer”
how can i onboard users to the new organisation using LDAP or invite users to login using ADS user not using email.
Thanks,
Nisha