goweb-oidc/misc/compose/hydra/reload-hydra-clients.sh
William Petit 97bacd0bb8
Some checks reported warnings
Cadoles/goweb-oidc/pipeline/head This commit was not built
fix: isolated local dev environment
2025-03-07 12:08:07 +01:00

12 lines
416 B
Bash

#!/bin/sh
set -x
HYDRA_CLIENTS_DIR=/etc/hydra/clients.d
HYDRA_ADMIN_ENDPOINT=http://127.0.0.1:4445
for client_file in $HYDRA_CLIENTS_DIR/*.json; do
client_id=$(basename "$client_file" | cut -f 1 -d '.')
/usr/bin/hydra clients delete --skip-tls-verify --endpoint "$HYDRA_ADMIN_ENDPOINT" "$client_id"
/usr/bin/hydra clients import --skip-tls-verify --endpoint "$HYDRA_ADMIN_ENDPOINT" "$client_file"
done