1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-06-02 07:16:06 +02:00
infrastructure/misc/kcadm_wrapper.sh

14 lines
699 B
Bash
Raw Normal View History

#!/usr/bin/env bash
#
# Script that wraps kcadm.sh to securely get our credentials.
#
# Example invocation:
# misc/kcadm_wrapper.sh get realms
2020-05-23 17:03:37 +02:00
# misc/kcadm_wrapper.sh get authentication/flows
# Refer to the API docs for which resources exist:
# https://www.keycloak.org/docs-api/10.0/rest-api/index.html
2020-05-23 17:05:37 +02:00
# See for general kcadm usage:
# https://github.com/keycloak/keycloak-documentation/blob/master/server_admin/topics/admin-cli.adoc
kcadm "$@" --no-config --server https://accounts.archlinux.org/auth --realm master --user $(misc/get_key.py group_vars/all/vault_keycloak.yml vault_keycloak_admin_user) --password $(misc/get_key.py group_vars/all/vault_keycloak.yml vault_keycloak_admin_password)