Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

internal tests only: define more values in uaa.yml #2403

Merged
merged 2 commits into from
Jul 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions scripts/cargo/uaa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ LOGIN_SECRET: loginsecret

jwt:
token:
signing-alg: HS256
signing-key: tokenKey
revocable: false
refresh:
format: opaque
rotate: false
unique: false

login:
serviceProviderKey: |
Expand Down
2 changes: 1 addition & 1 deletion uaa/src/main/webapp/WEB-INF/spring/oauth-clients.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<entry key="secret" value="loginsecret"/>
<entry key="scope" value="openid,oauth.approvals"/>
<entry key="authorized-grant-types" value="client_credentials,authorization_code"/>
<entry key="redirect-uri" value="http://localhost/**"/>
<entry key="redirect-uri" value="http://localhost/**,http://localhost:7000/**"/>
<entry key="authorities"
value="oauth.login,scim.write,clients.read,notifications.write,critical_notifications.write,emails.write,scim.userids,password.write,idps.write"/>
<entry key="autoapprove" value="true"/>
Expand Down