-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathauthentication-service.yml
38 lines (37 loc) · 1.18 KB
/
authentication-service.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
spring:
security:
oauth2:
client:
registration:
google:
client-id: ${CLIENT_ID}
client-secret: ${CLIENT_SECRET}
authorizationserver:
client:
google:
registration:
client-id: ${CLIENT_ID}
client-secret: ${CLIENT_SECRET}
client-authentication-methods:
- "client_secret_post"
authorization-grant-types:
- "authorization_code"
- "refresh_token"
redirect-uris:
- "http://127.0.0.1:3000"
- "http://127.0.0.1:9999"
scopes:
- "openid"
- "profile"
- "email"
require-authorization-consent: true
require-proof-key: true
sleuth:
sampler:
probability: 1
com:
microservice:
authentication:
jwt:
keyValue: YTMwOTIwODE1MGMzOGExM2E4NDc5ZjhjMmQwMTdkNDJlZWZkOTE0YTMwNWUxMTgxMTFhZTI1ZDI3M2QyMTRmMjI5Yzg0ODBjYTUxYjVkY2I5ZmY0YmRkMzBlZjRjNDM2Y2NiYzhlZjQ0ODRjMWZlNzVmZjdjM2JiMjdkMjdmMjk=
user-info-uri: ${USER_INFO_URI:http://localhost:9999/api/authenticatedUser}