1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-05-18 20:46:26 +02:00
infrastructure/misc/kcadm_wrapper.sh

21 lines
809 B
Bash
Raw Normal View History

#!/usr/bin/env bash
#
# Script that wraps kcadm.sh to securely get our credentials.
# It always operates on the realm `archlinux` for convenience.
#
# 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.sh "$@" \
-r archlinux \
--no-config \
--server https://accounts.archlinux.org \
--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)