Skip to content

Commit

Permalink
fix(oidc): incorrect default issuer url (#90) (#98)
Browse files Browse the repository at this point in the history
(cherry picked from commit 4be5fca)

Co-authored-by: Pavel Kotelevsky <[email protected]>
  • Loading branch information
jonathanlukas and chillleader authored Sep 24, 2024
1 parent 1b08508 commit 658000b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ operate:
profile: oidc
enabled: true
base-url: http://localhost:8081
auth-url: http://localhost:18080/auth/realms/camunda-platform/openid-connect/token
auth-url: http://localhost:18080/auth/realms/camunda-platform/protocol/openid-connect/token
audience: operate-api

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ void shouldApplyProfiles() throws MalformedURLException {
assertThat(properties.enabled()).isEqualTo(true);
assertThat(properties.authUrl())
.isEqualTo(
URI.create("http://localhost:18080/auth/realms/camunda-platform/openid-connect/token")
URI.create(
"http://localhost:18080/auth/realms/camunda-platform/protocol/openid-connect/token")
.toURL());
}
}

0 comments on commit 658000b

Please sign in to comment.