Skip to content
Snippets Groups Projects

Unifying variable naming convention

Merged Jaromír Hradil requested to merge unify_naming into master
Files
5
@@ -192,15 +192,15 @@ hub:
- urn:geant:eosc-federation.eu:group:asg:notebooks.open-science-cloud.ec.europa.eu:role=admin
claim_groups_key: "entitlements"
EGICheckinAuthenticator:
checkin_host: "{{ secrets[name]['checkin_host'] }}"
authorize_url: "https://{{ secrets[name]['checkin_host'] }}/OIDC/authorization"
token_url: "https://{{ secrets[name]['checkin_host'] }}/OIDC/token"
userdata_url: "https://{{ secrets[name]['checkin_host'] }}/OIDC/userinfo"
introspect_url: "https://{{ secrets[name]['checkin_host'] }}/OIDC/introspect"
client_id: "{{ secrets[name]['client_id'] }}"
client_secret: "{{ secrets[name]['client_secret'] }}"
checkin_host: "{{ secrets['checkin_host'] }}"
authorize_url: "https://{{ secrets['checkin_host'] }}/OIDC/authorization"
token_url: "https://{{ secrets['checkin_host'] }}/OIDC/token"
userdata_url: "https://{{ secrets['checkin_host'] }}/OIDC/userinfo"
introspect_url: "https://{{ secrets['checkin_host'] }}/OIDC/introspect"
client_id: "{{ secrets['client_id'] }}"
client_secret: "{{ secrets['client_secret'] }}"
oauth_callback_url: "https://{{ notebooks_hostname }}/hub/oauth_callback"
openid_configuration_url: "https://{{ secrets[name]['checkin_host'] }}/.well-known/openid-configuration"
openid_configuration_url: "https://{{ secrets['checkin_host'] }}/.well-known/openid-configuration"
scope: ["openid", "profile", "email", "offline_access", "entitlements"]
username_claim: "sub"
extra_authorize_params:
Loading