Skip to content

Commit

Permalink
chore: Update Keycloak
Browse files Browse the repository at this point in the history
  • Loading branch information
anarsultanov committed Feb 22, 2024
1 parent 8f23b7f commit 41bffce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ the created users will be tenantless and asked to create a new tenant.
To address this issue, this extension introduces the concept of `tenant-specific IDPs` and an additional authenticator that facilitates the creation of required memberships.

To configure an IDP as tenant-specific, tenants' IDs should be added to the `multi-tenancy.tenants` configuration attribute of the IDP as a **comma-separated list**.
This can be achieved using the standard [Keycloak REST API](https://www.keycloak.org/docs-api/23.0.4/rest-api/index.html#_identity_providers).
This can be achieved using the standard [Keycloak REST API](https://www.keycloak.org/docs-api/23.0.7/rest-api/index.html#_identity_providers).

> **_Note_**
> - _With tenant-specific IDP configuration, the IDP limits access to only the tenants listed in the configuration.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</licenses>

<properties>
<keycloak.version>23.0.4</keycloak.version>
<keycloak.version>23.0.7</keycloak.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class BaseIntegrationTest {
private static final Integer MAILHOG_HTTP_PORT = 8025;

private static final Network network = Network.newNetwork();
private static final KeycloakContainer keycloak = new KeycloakContainer("quay.io/keycloak/keycloak:23.0.4")
private static final KeycloakContainer keycloak = new KeycloakContainer("quay.io/keycloak/keycloak:23.0.7")
.withRealmImportFiles("/realm-export.json", "/idp-realm-export.json")
.withProviderClassesFrom("target/classes")
.withNetwork(network)
Expand Down

0 comments on commit 41bffce

Please sign in to comment.