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

Switch clients to 12h refresh tokens #851

Merged
merged 1 commit into from
Jun 13, 2024
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
8 changes: 4 additions & 4 deletions bosh/opsfiles/clients.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
authorized-grant-types: authorization_code,client_credentials
authorities: scim.read,password.write,uaa.admin,uaa.resource
access-token-validity: 600
refresh-token-validity: 259200
refresh-token-validity: 43200
redirect-uri: https://account.((system_domain))/oauth/login
name: Invite Users
autoapprove: true
Expand Down Expand Up @@ -134,7 +134,7 @@
scope: cloud_controller.read,oauth.approvals,openid,scim.userids
authorized-grant-types: authorization_code,refresh_token
access-token-validity: 600
refresh-token-validity: 259200
refresh-token-validity: 43200
name: Logsearch
redirect-uri: https://logs.((system_domain))/login
autoapprove: true
Expand All @@ -149,7 +149,7 @@
authorized-grant-types: authorization_code,client_credentials,refresh_token
authorities: uaa.none
access-token-validity: 600
refresh-token-validity: 259200
refresh-token-validity: 43200
name: "Dashboard"
autoapprove: true
show-on-homepage: true
Expand Down Expand Up @@ -181,4 +181,4 @@
value: 600
- type: replace
path: /instance_groups/name=uaa/jobs/name=uaa/properties/uaa/clients/cf/refresh-token-validity
value: 259200
value: 43200
2 changes: 1 addition & 1 deletion bosh/opsfiles/pages-clients-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
authorized-grant-types: authorization_code,client_credentials
authorities: groups.update,scim.read,scim.invite,scim.write
access-token-validity: 600
refresh-token-validity: 259200
refresh-token-validity: 43200
name: Pages
autoapprove: true
show-on-homepage: true
Expand Down
2 changes: 1 addition & 1 deletion bosh/opsfiles/pages-clients-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
authorized-grant-types: authorization_code,client_credentials
authorities: groups.update,scim.read,scim.invite,scim.write
access-token-validity: 600
refresh-token-validity: 259200
refresh-token-validity: 43200
name: Pages
autoapprove: true
show-on-homepage: true
Expand Down
2 changes: 1 addition & 1 deletion bosh/opsfiles/pages-clients-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
authorized-grant-types: authorization_code,client_credentials
authorities: groups.update,scim.read,scim.invite,scim.write
access-token-validity: 600
refresh-token-validity: 259200
refresh-token-validity: 43200
name: Pages
autoapprove: true
show-on-homepage: true
Expand Down