Compare commits
8 Commits
67310cdb79
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 4dadd1f4ab | |||
| a6dca8eb96 | |||
| 3af322dff3 | |||
| c62fdb574a | |||
| 1fc0b70e1a | |||
| 5faa2f84f6 | |||
| 58b200c512 | |||
| 7636d45f21 |
@@ -40,9 +40,12 @@ variable "providers_oauth2" {
|
|||||||
# Managed identifiers of scope property mappings (e.g.
|
# Managed identifiers of scope property mappings (e.g.
|
||||||
# goauthentik.io/providers/oauth2/scope-openid). Resolved to ids.
|
# goauthentik.io/providers/oauth2/scope-openid). Resolved to ids.
|
||||||
scope_mappings = optional(list(string), [])
|
scope_mappings = optional(list(string), [])
|
||||||
|
# allowed_redirect_uris is list(map(string)); the API always stores a
|
||||||
|
# redirect_uri_type key, so it must be set here or every plan drifts.
|
||||||
redirect_uris = optional(list(object({
|
redirect_uris = optional(list(object({
|
||||||
matching_mode = optional(string, "strict")
|
matching_mode = optional(string, "strict")
|
||||||
url = string
|
url = string
|
||||||
|
redirect_uri_type = optional(string, "authorization")
|
||||||
})), [])
|
})), [])
|
||||||
signing_key = optional(string, null)
|
signing_key = optional(string, null)
|
||||||
access_token_validity = optional(string, "minutes=10")
|
access_token_validity = optional(string, "minutes=10")
|
||||||
|
|||||||
Reference in New Issue
Block a user