Skip to content

Commit

Permalink
Align env variables names with missing IAM_ prefix (#807)
Browse files Browse the repository at this point in the history
  • Loading branch information
federicaagostini authored Jul 22, 2024
1 parent 3ad0339 commit 90217e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions iam-login-service/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,10 @@ client-registration:
allow-for: ${IAM_CLIENT_REGISTRATION_ALLOW_FOR:ANYONE}
enable: ${IAM_CLIENT_REGISTRATION_ENABLE:true}
client-defaults:
default-access-token-validity-seconds: ${DEFAULT_ACCESS_TOKEN_VALIDITY_SECONDS:3600}
default-device-code-validity-seconds: ${DEFAULT_DEVICE_CODE_VALIDITY_SECONDS:600}
default-id-token-validity-seconds: ${DEFAULT_ID_TOKEN_VALIDITY_SECONDS:600}
default-refresh-token-validity-seconds: ${DEFAULT_REFRESH_TOKEN_VALIDITY_SECONDS:2592000}
default-access-token-validity-seconds: ${IAM_DEFAULT_ACCESS_TOKEN_VALIDITY_SECONDS:3600}
default-device-code-validity-seconds: ${IAM_DEFAULT_DEVICE_CODE_VALIDITY_SECONDS:600}
default-id-token-validity-seconds: ${IAM_DEFAULT_ID_TOKEN_VALIDITY_SECONDS:600}
default-refresh-token-validity-seconds: ${IAM_DEFAULT_REFRESH_TOKEN_VALIDITY_SECONDS:2592000}

client:
track-last-used: ${IAM_CLIENT_TRACK_LAST_USED:true}
Expand Down

0 comments on commit 90217e2

Please sign in to comment.