Skip to content
Snippets Groups Projects
Commit 3e896615 authored by ThanKarab's avatar ThanKarab
Browse files

Fixed env variable KEYCLOAK_CLIENT_ID in app.yaml

parent 2c3051a9
No related branches found
No related tags found
No related merge requests found
......@@ -42,11 +42,11 @@ spring:
registration:
keycloak:
authorization-grant-type: authorization_code
client-id: {{ .Env.KEYCLOAK_REALM }}
client-id: {{ .Env.KEYCLOAK_CLIENT_ID }}
client-secret: {{ .Env.KEYCLOAK_CLIENT_SECRET }}
provider: keycloak
scope: openid
redirect-uri: http://172.17.0.1/${server.servlet.contextPath}/login/oauth2/code/{{ .Env.KEYCLOAK_REALM }}
redirect-uri: http://172.17.0.1/${server.servlet.contextPath}/login/oauth2/code/{{ .Env.KEYCLOAK_CLIENT_ID }}
provider:
keycloak:
issuer-uri: http://172.17.0.1/auth/realms/{{ .Env.KEYCLOAK_REALM }}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment