goweb-oidc/misc/compose/hydra/reload-hydra-clients.sh

12 lines
416 B
Bash
Raw Normal View History

2025-03-07 12:07:54 +01:00
#!/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