File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -347,6 +347,8 @@ properties:
347
347
description: "mask the Grafana version number for unauthenticated users"
348
348
grafana.auth.oauth_skip_org_role_update_sync:
349
349
description: "Skip forced assignment of OrgID 1 or 'auto_assign_org_id' for social logins"
350
+ grafana.auth.oauth_allow_insecure_email_lookup:
351
+ description: "Enable user lookup based on email in addition to using unique ID provided by IdPs."
350
352
grafana.auth.azure_auth_enabled:
351
353
description: "Set to true to enable Azure authentication option for HTTP-based datasources"
352
354
Original file line number Diff line number Diff line change @@ -720,6 +720,11 @@ oauth_state_cookie_max_age = <%= oauth_state_cookie_max_age %>
720
720
oauth_skip_org_role_update_sync = <%= oauth_skip_org_role_update_sync %>
721
721
<% end %>
722
722
723
+ <% if_p(' grafana.auth.oauth_allow_insecure_email_lookup' ) do |oauth_allow_insecure_email_lookup| %>
724
+ # Enable user lookup based on email in addition to using unique ID provided by IdPs.
725
+ oauth_allow_insecure_email_lookup = <%= oauth_allow_insecure_email_lookup %>
726
+ <% end %>
727
+
723
728
<% if_p(' grafana.auth.api_key_max_seconds_to_live' ) do |api_key_max_seconds_to_live| %>
724
729
# limit of api_key seconds to live before expiration
725
730
api_key_max_seconds_to_live = <%= api_key_max_seconds_to_live %>
You can’t perform that action at this time.
0 commit comments