diff options
author | Vincent Ambo <mail@tazj.in> | 2021-12-26T00·08+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-26T16·45+0000 |
commit | 7b3c0b3e2f672ba2547827105b9f14d003d16267 (patch) | |
tree | cb37cae2cfcf9e5845b2d64bbfdb7ae1f3734f22 /bin/__dispatch.sh | |
parent | 8a5ccd70899b6c17f5e3947a1edf1d5084d28cd2 (diff) |
feat(ops/keycloak): Check in initial Keycloak configuration r/3425
This is still missing most of the client configuration etc., in part due to bugs in the provider which are preventing resource imports. Change-Id: Ic224ffc001f8e1fe6dcd47b7d002580fdf7b0774 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4628 Tested-by: BuildkiteCI Autosubmit: tazjin <mail@tazj.in> Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'bin/__dispatch.sh')
-rwxr-xr-x | bin/__dispatch.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/__dispatch.sh b/bin/__dispatch.sh index d06860e6c656..24a04d75cfdc 100755 --- a/bin/__dispatch.sh +++ b/bin/__dispatch.sh @@ -65,6 +65,10 @@ case "${TARGET_TOOL}" in TARGET_TOOL="terraform" attr="ops.glesys.terraform" ;; + tf-keycloak) + TARGET_TOOL="terraform" + attr="ops.keycloak.terraform" + ;; *) echo "The tool '${TARGET_TOOL}' is currently not installed in this repository." exit 1 |