From d2375c228a29296bbedcf44e0c9732c24aa6e4fa Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase <svenstaro@gmail.com> Date: Sat, 29 Aug 2020 04:39:17 +0200 Subject: [PATCH] keycloak: Set display_name_html explicitly so that the custom theme works I know this seems a bit weird but this is how the Keycloak templates work. :P --- tf-stage2/keycloak.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/tf-stage2/keycloak.tf b/tf-stage2/keycloak.tf index 1a3c3b0c3..c03314c78 100644 --- a/tf-stage2/keycloak.tf +++ b/tf-stage2/keycloak.tf @@ -46,6 +46,7 @@ resource "keycloak_realm" "archlinux" { enabled = true remember_me = true display_name = "Arch Linux" + display_name_html = "<div class=\"kc-logo-text\"><span>Arch Linux</span></div>" reset_password_allowed = true verify_email = true -- GitLab