This is an automated email from the ASF dual-hosted git repository.

vincbeck pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 056efdbc1ad keycloak: enable client_secret retrieval from secrets 
backend (#59065)
056efdbc1ad is described below

commit 056efdbc1adfc9f5fd0a4ce9c305c9d87f821540
Author: ecodina <[email protected]>
AuthorDate: Fri Dec 5 16:03:28 2025 +0100

    keycloak: enable client_secret retrieval from secrets backend (#59065)
---
 providers/keycloak/provider.yaml                                       | 1 +
 providers/keycloak/src/airflow/providers/keycloak/get_provider_info.py | 1 +
 2 files changed, 2 insertions(+)

diff --git a/providers/keycloak/provider.yaml b/providers/keycloak/provider.yaml
index c983ffa28fa..61463990de7 100644
--- a/providers/keycloak/provider.yaml
+++ b/providers/keycloak/provider.yaml
@@ -49,6 +49,7 @@ config:
         description: |
           Secret associated to the client configured in Keycloak to integrate 
with Airflow.
         type: string
+        sensitive: true
         version_added: 0.0.1
         example: ~
         default: ~
diff --git 
a/providers/keycloak/src/airflow/providers/keycloak/get_provider_info.py 
b/providers/keycloak/src/airflow/providers/keycloak/get_provider_info.py
index ff0a6d20060..d9d97472202 100644
--- a/providers/keycloak/src/airflow/providers/keycloak/get_provider_info.py
+++ b/providers/keycloak/src/airflow/providers/keycloak/get_provider_info.py
@@ -43,6 +43,7 @@ def get_provider_info():
                     "client_secret": {
                         "description": "Secret associated to the client 
configured in Keycloak to integrate with Airflow.\n",
                         "type": "string",
+                        "sensitive": True,
                         "version_added": "0.0.1",
                         "example": None,
                         "default": None,

Reply via email to