From 01b964865039124f347e29e7db73cda499a444f1 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Fri, 29 Aug 2025 12:27:29 +0200 Subject: [PATCH] Made OIDC secret UPPER --- group_vars/all/12_oidc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/group_vars/all/12_oidc.yml b/group_vars/all/12_oidc.yml index de0e5a24..24a58dbe 100644 --- a/group_vars/all/12_oidc.yml +++ b/group_vars/all/12_oidc.yml @@ -25,7 +25,7 @@ defaults_oidc: URL: "{{ _oidc_url }}" CLIENT: ID: "{{ _oidc_client_id }}" # Client identifier, typically matching your primary domain -# secret: # Client secret for authenticating with the OIDC provider (set in the inventory file). Recommend greater then 32 characters +# SECRET: # Client secret for authenticating with the OIDC provider (set in the inventory file). Recommend greater then 32 characters REALM: "{{ _oidc_client_realm }}" # The realm to which the client belongs in the OIDC provider ISSUER_URL: "{{ _oidc_client_issuer_url }}" # Base URL of the OIDC provider (issuer) DISCOVERY_DOCUMENT: "{{ _oidc_client_issuer_url ~ '/.well-known/openid-configuration' }}" # URL for fetching the provider's configuration details