Keycloak: Add synapse client

This commit is contained in:
2023-09-15 17:51:31 +02:00
parent 3ec96eb1b3
commit 8024ba0dad
7 changed files with 49 additions and 3 deletions

View File

@ -28,7 +28,8 @@ resource "keycloak_openid_client" "client" {
implicit_flow_enabled = false
direct_access_grants_enabled = true
service_accounts_enabled = false
frontchannel_logout_enabled = false
frontchannel_logout_enabled = var.frontchannel_logout_enabled
oauth2_device_authorization_grant_enabled = var.device_authorization_grant_enabled
}

View File

@ -68,6 +68,14 @@ variable "enabled" {
# Default settings for all clients:
variable "device_authorization_grant_enabled" {
type = bool
default = false
}
variable "frontchannel_logout_enabled" {
type = bool
default = false
}
variable "login_theme" {
type = string