From 5fb3879f5b39706e5e2e50898034349c38f9dff2 Mon Sep 17 00:00:00 2001 From: Dan Ankers Date: Thu, 28 Sep 2023 19:25:31 +0100 Subject: [PATCH] Correct authentication flows for Gitea --- main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.tf b/main.tf index 0aaa715..2aed9fa 100644 --- a/main.tf +++ b/main.tf @@ -146,6 +146,8 @@ resource "keycloak_openid_client" "gitea_client" { enabled = true access_type = "CONFIDENTIAL" + standard_flow_enabled = true + implicit_flow_enabled = true valid_redirect_uris = [ "https://gitea.${var.domain_suffix}/*" ]