From cfda43e11693234c2b9e63a9bb7f68b5f43c9c4f Mon Sep 17 00:00:00 2001 From: Ultradesu Date: Tue, 17 Mar 2026 14:00:41 +0000 Subject: [PATCH] Added web player --- terraform/authentik/oauth2-apps.auto.tfvars | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/terraform/authentik/oauth2-apps.auto.tfvars b/terraform/authentik/oauth2-apps.auto.tfvars index 588227d..3298748 100644 --- a/terraform/authentik/oauth2-apps.auto.tfvars +++ b/terraform/authentik/oauth2-apps.auto.tfvars @@ -208,5 +208,25 @@ oauth_applications = { create_group = false signing_key = "1b1b5bec-034a-4d96-871a-133f11322360" } + "furumi-ng-web" = { + name = "Furumi Web Player" + slug = "furumi-ng-web" + group = "Tools" + meta_description = "Furumi Web Player" + meta_icon = "https://img.icons8.com/pulsar-color/48/music.png" + redirect_uris = [ + "https://music.hexor.cy/auth/callback", + ] + meta_launch_url = "https://music.hexor.cy" + client_type = "confidential" + include_claims_in_id_token = true + access_code_validity = "minutes=1" + access_token_validity = "minutes=5" + refresh_token_validity = "days=30" + scope_mappings = ["openid", "profile", "email"] + access_groups = [] + create_group = false + signing_key = "1b1b5bec-034a-4d96-871a-133f11322360" + } }