Skip to content

Commit

Permalink
Adding oauth_allow_insecure_email_lookup to fix oauth user sync error
Browse files Browse the repository at this point in the history
  • Loading branch information
hypery2k committed Jan 18, 2024
1 parent 1a36a90 commit a7ea3b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion roles/grafana/templates/grafana.ini.j2
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ welcome_email_on_sign_up = {{ grafana_welcome_email_on_sign_up }}
{% if grafana_auth != {} %}
[auth]
disable_login_form = {{ grafana_auth.disable_login_form | default('False') }}
oauth_auto_login = {{ grafana_auth.oauth_auto_login | default('False') }}
oauth_allow_insecure_email_lookup = {{ grafana_auth.oauth_allow_insecure_email_lookup | default('False') }}
disable_signout_menu = {{ grafana_auth.disable_signout_menu | default('False') }}
disable_signout_menu = {{ grafana_auth.disable_signout_menu | default('False') }}
signout_redirect_url = {{ grafana_auth.signout_redirect_url | default('') }}
{% for section, options in grafana_auth.items() %}
Expand Down

0 comments on commit a7ea3b3

Please sign in to comment.