Ajout variables d'environement hydra-oidc (#3)

Reviewed-on: #3
Co-authored-by: cmsassot <cmsassot@cadoles.com>
Co-committed-by: cmsassot <cmsassot@cadoles.com>
This commit is contained in:
cmsassot 2022-09-14 12:11:00 +02:00 committed by wpetit
parent 8d0e7026e4
commit 3b7b187a60
2 changed files with 4 additions and 0 deletions

View File

@ -199,6 +199,7 @@ hydra_oidc_post_logout_redirect_url:
hydra_oidc_scope: openid email
hydra_oidc_client_id:
hydra_oidc_client_secret:
hydra_oidc_additionnal_env: {}
hydra_oidc_attributes_rewrite_rules:
email:

View File

@ -19,4 +19,7 @@ PODMAN_ARGS="\
-e 'CLIENT_ID_FC={{ hydra_oidc_client_id }}' \
-e 'CLIENT_SECRET_FC={{ hydra_oidc_client_secret }}' \
-e 'TRUSTED_PROXIES=127.0.0.1,10.0.2.0/24' \
{% for key,value in hydra_oidc_additionnal_env.items() %}
-e '{{ key }}={{ value }}' \
{% endfor %}
"