-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(plugins): update dependencies * feat(plugins): add support for plugins * chore: remove editable option for pip install * ci: add update to plugins in automation * fix: abstract duplicates * refactor: abstract stat scim scoped for configAPI * refactor: remove all duplicates * fix(admin-ui): typo on authserver config * refactor: rename variable to avoid potential issue The issue is reported as bug by sonarcloud.io * fix: don't append hostname if existent Co-authored-by: moabu <47318409+moabu@users.noreply.github.com>
- Loading branch information
Showing
43 changed files
with
1,448 additions
and
287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
-e git+https://github.com/JanssenProject/jans-pycloudlib@a6ce9a098be01b4edcb69fbeee7f0bf745130c44#egg=jans-pycloudlib | ||
git+https://github.com/JanssenProject/jans-cloud-native@bd1a605999b2c560077cb19d7c80d93f6cba3f5d#egg=jans-pycloudlib&subdirectory=jans-pycloudlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
click==6.7 | ||
-e git+https://github.com/JanssenProject/jans-pycloudlib@a6ce9a098be01b4edcb69fbeee7f0bf745130c44#egg=jans-pycloudlib | ||
git+https://github.com/JanssenProject/jans-cloud-native@bd1a605999b2c560077cb19d7c80d93f6cba3f5d#egg=jans-pycloudlib&subdirectory=jans-pycloudlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
ruamel.yaml==0.16.10 | ||
-e git+https://github.com/JanssenProject/jans-pycloudlib@132da3fcc2bbea66a4bd2a7c4bcb7a7b7a1e87e4#egg=jans-pycloudlib | ||
git+https://github.com/JanssenProject/jans-cloud-native@bd1a605999b2c560077cb19d7c80d93f6cba3f5d#egg=jans-pycloudlib&subdirectory=jans-pycloudlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
# !certs | ||
!conf | ||
!jetty | ||
# !libs | ||
!plugins | ||
!scripts | ||
!LICENSE | ||
!requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
docker-jans-config-api/plugins/admin-ui/auiConfiguration.properties.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# auth server | ||
authserver.clientId=%(admin_ui_client_id)s | ||
authserver.clientSecret=%(admin_ui_client_pw)s | ||
authserver.authzBaseUrl=https://%(hostname)s/jans-auth/authorize.htm | ||
authserver.scope=openid+profile+email+user_name | ||
authserver.redirectUrl=https://%(hostname)s/admin | ||
authserver.frontChannelLogoutUrl=https://%(hostname)s/admin/logout | ||
authserver.postLogoutRedirectUri=https://%(hostname)s/admin | ||
authserver.tokenEndpoint=https://%(hostname)s/jans-auth/restv1/token | ||
authserver.introspectionEndpoint=https://%(hostname)s/jans-auth/restv1/introspection | ||
authserver.userInfoEndpoint=https://%(hostname)s/jans-auth/restv1/userinfo | ||
authserver.healthCheckUrl=https://%(hostname)s/jans-auth/sys/health-check | ||
authserver.endSessionEndpoint=https://%(hostname)s/jans-auth/restv1/end_session | ||
|
||
# token server | ||
tokenServer.clientId=%(token_server_admin_ui_client_id)s | ||
tokenServer.clientSecret=%(token_server_admin_ui_client_pw)s | ||
tokenServer.authzBaseUrl=%(token_server_authz_url)s | ||
tokenServer.scope=openid+profile+email+user_name | ||
tokenServer.redirectUrl=https://%(hostname)s/admin | ||
tokenServer.logoutUrl=https://%(hostname)s/admin/logout | ||
tokenServer.tokenEndpoint=%(token_server_token_url)s | ||
tokenServer.introspectionEndpoint=%(token_server_introspection_url)s | ||
tokenServer.userInfoEndpoint=%(token_server_userinfo_url)s | ||
|
||
# licenseSpring details | ||
licenseSpring.apiKey=%(admin_ui_license_api_key)s | ||
licenseSpring.productCode=%(admin_ui_license_product_code)s | ||
licenseSpring.sharedKey=%(admin_ui_license_shared_key)s | ||
licenseSpring.managementKey=%(admin_ui_license_management_key)s | ||
# TODO: set to true for production mode | ||
licenseSpring.enabled=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
-e git+https://github.com/JanssenProject/jans-pycloudlib@a6ce9a098be01b4edcb69fbeee7f0bf745130c44#egg=jans-pycloudlib | ||
git+https://github.com/JanssenProject/jans-cloud-native@bd1a605999b2c560077cb19d7c80d93f6cba3f5d#egg=jans-pycloudlib&subdirectory=jans-pycloudlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.