mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
Auth: Use PKCE by default (If OAuth provider supports PKCE) (#68095)
OAuth: change use_pkce = true to defaults.ini/sample.ini #68073 Signed-off-by: junya koyama <arukiidou@yahoo.co.jp>
This commit is contained in:
parent
debf04eb2c
commit
f79654feb3
@ -162,7 +162,7 @@ query_retries = 0
|
|||||||
# For "sqlite" only. How many times to retry transaction in case of database is locked failures. Default is 5.
|
# For "sqlite" only. How many times to retry transaction in case of database is locked failures. Default is 5.
|
||||||
transaction_retries = 5
|
transaction_retries = 5
|
||||||
|
|
||||||
# Set to true to add metrics and tracing for database queries.
|
# Set to true to add metrics and tracing for database queries.
|
||||||
instrument_queries = false
|
instrument_queries = false
|
||||||
|
|
||||||
#################################### Cache server #############################
|
#################################### Cache server #############################
|
||||||
@ -611,6 +611,7 @@ role_attribute_strict = false
|
|||||||
allow_assign_grafana_admin = false
|
allow_assign_grafana_admin = false
|
||||||
skip_org_role_sync = false
|
skip_org_role_sync = false
|
||||||
tls_skip_verify_insecure = false
|
tls_skip_verify_insecure = false
|
||||||
|
use_pkce = true
|
||||||
|
|
||||||
#################################### Google Auth #########################
|
#################################### Google Auth #########################
|
||||||
[auth.google]
|
[auth.google]
|
||||||
@ -629,6 +630,7 @@ allowed_domains =
|
|||||||
hosted_domain =
|
hosted_domain =
|
||||||
skip_org_role_sync = false
|
skip_org_role_sync = false
|
||||||
tls_skip_verify_insecure = false
|
tls_skip_verify_insecure = false
|
||||||
|
use_pkce = true
|
||||||
|
|
||||||
#################################### Grafana.com Auth ####################
|
#################################### Grafana.com Auth ####################
|
||||||
# legacy key names (so they work in env variables)
|
# legacy key names (so they work in env variables)
|
||||||
@ -670,6 +672,7 @@ role_attribute_strict = false
|
|||||||
allow_assign_grafana_admin = false
|
allow_assign_grafana_admin = false
|
||||||
force_use_graph_api = false
|
force_use_graph_api = false
|
||||||
tls_skip_verify_insecure = false
|
tls_skip_verify_insecure = false
|
||||||
|
use_pkce = true
|
||||||
|
|
||||||
#################################### Okta OAuth #######################
|
#################################### Okta OAuth #######################
|
||||||
[auth.okta]
|
[auth.okta]
|
||||||
@ -691,6 +694,7 @@ role_attribute_strict = false
|
|||||||
allow_assign_grafana_admin = false
|
allow_assign_grafana_admin = false
|
||||||
skip_org_role_sync = false
|
skip_org_role_sync = false
|
||||||
tls_skip_verify_insecure = false
|
tls_skip_verify_insecure = false
|
||||||
|
use_pkce = true
|
||||||
|
|
||||||
#################################### Generic OAuth #######################
|
#################################### Generic OAuth #######################
|
||||||
[auth.generic_oauth]
|
[auth.generic_oauth]
|
||||||
@ -1013,8 +1017,8 @@ ha_peers = ""
|
|||||||
# The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
|
# The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
|
||||||
ha_peer_timeout = 15s
|
ha_peer_timeout = 15s
|
||||||
|
|
||||||
# The label is an optional string to include on each packet and stream.
|
# The label is an optional string to include on each packet and stream.
|
||||||
# It uniquely identifies the cluster and prevents cross-communication
|
# It uniquely identifies the cluster and prevents cross-communication
|
||||||
# issues when sending gossip messages in an enviromenet with multiple clusters.
|
# issues when sending gossip messages in an enviromenet with multiple clusters.
|
||||||
ha_label =
|
ha_label =
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@
|
|||||||
# For "sqlite" only. How many times to retry transaction in case of database is locked failures. Default is 5.
|
# For "sqlite" only. How many times to retry transaction in case of database is locked failures. Default is 5.
|
||||||
;transaction_retries = 5
|
;transaction_retries = 5
|
||||||
|
|
||||||
# Set to true to add metrics and tracing for database queries.
|
# Set to true to add metrics and tracing for database queries.
|
||||||
;instrument_queries = false
|
;instrument_queries = false
|
||||||
|
|
||||||
################################### Data sources #########################
|
################################### Data sources #########################
|
||||||
@ -599,6 +599,7 @@
|
|||||||
;allow_assign_grafana_admin = false
|
;allow_assign_grafana_admin = false
|
||||||
;skip_org_role_sync = false
|
;skip_org_role_sync = false
|
||||||
;tls_skip_verify_insecure = false
|
;tls_skip_verify_insecure = false
|
||||||
|
;use_pkce = true
|
||||||
|
|
||||||
#################################### Google Auth ##########################
|
#################################### Google Auth ##########################
|
||||||
[auth.google]
|
[auth.google]
|
||||||
@ -616,6 +617,7 @@
|
|||||||
;allowed_domains =
|
;allowed_domains =
|
||||||
;hosted_domain =
|
;hosted_domain =
|
||||||
;skip_org_role_sync = false
|
;skip_org_role_sync = false
|
||||||
|
;use_pkce = true
|
||||||
|
|
||||||
#################################### Grafana.com Auth ####################
|
#################################### Grafana.com Auth ####################
|
||||||
[auth.grafana_com]
|
[auth.grafana_com]
|
||||||
@ -646,6 +648,7 @@
|
|||||||
;allowed_groups =
|
;allowed_groups =
|
||||||
;role_attribute_strict = false
|
;role_attribute_strict = false
|
||||||
;allow_assign_grafana_admin = false
|
;allow_assign_grafana_admin = false
|
||||||
|
;use_pkce = true
|
||||||
# prevent synchronizing users organization roles
|
# prevent synchronizing users organization roles
|
||||||
;skip_org_role_sync = false
|
;skip_org_role_sync = false
|
||||||
|
|
||||||
@ -667,6 +670,7 @@
|
|||||||
;role_attribute_strict = false
|
;role_attribute_strict = false
|
||||||
;allow_assign_grafana_admin = false
|
;allow_assign_grafana_admin = false
|
||||||
;skip_org_role_sync = false
|
;skip_org_role_sync = false
|
||||||
|
;use_pkce = true
|
||||||
|
|
||||||
#################################### Generic OAuth ##########################
|
#################################### Generic OAuth ##########################
|
||||||
[auth.generic_oauth]
|
[auth.generic_oauth]
|
||||||
@ -983,8 +987,8 @@
|
|||||||
# The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
|
# The interval string is a possibly signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s or 1m.
|
||||||
;ha_peer_timeout = "15s"
|
;ha_peer_timeout = "15s"
|
||||||
|
|
||||||
# The label is an optional string to include on each packet and stream.
|
# The label is an optional string to include on each packet and stream.
|
||||||
# It uniquely identifies the cluster and prevents cross-communication
|
# It uniquely identifies the cluster and prevents cross-communication
|
||||||
# issues when sending gossip messages in an enviromenet with multiple clusters.
|
# issues when sending gossip messages in an enviromenet with multiple clusters.
|
||||||
;ha_label =
|
;ha_label =
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user