Must-share information (formatted with Markdown):
- which versions are you using (SonarQube, Scanner, Plugin, and any relevant extension)
- Developer Edition
- Version 9.4 (build 54424)
- what are you trying to achieve
-Enable Single Sign on with windows Active Directory
-LDAP and Group Mapping is in use would like the users on the groups to auto sign in using SSO - what have you tried so far to achieve this
SSO Authentication
SONAR_WEB_SSO_ENABLE=false
Enable authentication using HTTP headers
SONAR_WEB_SSO_LOGINHEADER=X-Forwarded-Login
Name of the header to get the user login. Only alphanumeric, ‘.’ and ‘@’ characters are allowed
SONAR_WEB_SSO_NAMEHEADER=X-Forwarded-Name
Name of the header to get the user name
SONAR_WEB_SSO_EMAILHEADER=X-Forwarded-Email
Name of the header to get the user email (optional)
SONAR_WEB_SSO_GROUPSHEADER=X-Forwarded-Groups
Name of the header to get the list of user groups, separated by comma (optional). If the SONARSSOGROUPSHEADER is set, the user will belong to those groups if groups exist in SonarQube. If none of the provided groups exists in SonarQube, the user will only belong to the default group. Note that the default group will always be set.
SONAR_WEB_SSO_REFRESHINTERVALINMINUTES=5
Interval used to know when to refresh name, email, and groups. During this interval, if for instance the name of the user is changed in the header, it will only be updated after X minutes.