Skip to content

Commit

Permalink
upgrade to keycloak 24.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rgl committed Apr 18, 2024
1 parent 328e0fa commit 2c0cf31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion keycloak/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dnf --installroot /mnt/rootfs clean all
rpm --root /mnt/rootfs -e --nodeps setup
EOF

FROM quay.io/keycloak/keycloak:24.0.2
FROM quay.io/keycloak/keycloak:24.0.3
COPY --from=ubi-micro-build /mnt/rootfs /
COPY --chmod=0755 entrypoint.sh /
USER 0
Expand Down
10 changes: 5 additions & 5 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ resource "keycloak_saml_client" "example_go_saml" {
}

# see https://registry.terraform.io/providers/mrparkers/keycloak/latest/docs/resources/saml_user_property_protocol_mapper
# see https://www.keycloak.org/docs-api/24.0.2/javadocs/org/keycloak/models/UserModel.html
# see https://www.keycloak.org/docs-api/24.0.3/javadocs/org/keycloak/models/UserModel.html
resource "keycloak_saml_user_property_protocol_mapper" "example_go_saml_username" {
realm_id = keycloak_saml_client.example_go_saml.realm_id
client_id = keycloak_saml_client.example_go_saml.id
Expand All @@ -144,7 +144,7 @@ resource "keycloak_saml_user_property_protocol_mapper" "example_go_saml_username
}

# see https://registry.terraform.io/providers/mrparkers/keycloak/latest/docs/resources/saml_user_property_protocol_mapper
# see https://www.keycloak.org/docs-api/24.0.2/javadocs/org/keycloak/models/UserModel.html
# see https://www.keycloak.org/docs-api/24.0.3/javadocs/org/keycloak/models/UserModel.html
resource "keycloak_saml_user_property_protocol_mapper" "example_go_saml_email" {
realm_id = keycloak_saml_client.example_go_saml.realm_id
client_id = keycloak_saml_client.example_go_saml.id
Expand All @@ -155,7 +155,7 @@ resource "keycloak_saml_user_property_protocol_mapper" "example_go_saml_email" {
}

# see https://registry.terraform.io/providers/mrparkers/keycloak/latest/docs/resources/saml_user_property_protocol_mapper
# see https://www.keycloak.org/docs-api/24.0.2/javadocs/org/keycloak/models/UserModel.html
# see https://www.keycloak.org/docs-api/24.0.3/javadocs/org/keycloak/models/UserModel.html
resource "keycloak_saml_user_property_protocol_mapper" "example_go_saml_emailverified" {
realm_id = keycloak_saml_client.example_go_saml.realm_id
client_id = keycloak_saml_client.example_go_saml.id
Expand All @@ -166,7 +166,7 @@ resource "keycloak_saml_user_property_protocol_mapper" "example_go_saml_emailver
}

# see https://registry.terraform.io/providers/mrparkers/keycloak/latest/docs/resources/saml_user_property_protocol_mapper
# see https://www.keycloak.org/docs-api/24.0.2/javadocs/org/keycloak/models/UserModel.html
# see https://www.keycloak.org/docs-api/24.0.3/javadocs/org/keycloak/models/UserModel.html
resource "keycloak_saml_user_property_protocol_mapper" "example_go_saml_firstname" {
realm_id = keycloak_saml_client.example_go_saml.realm_id
client_id = keycloak_saml_client.example_go_saml.id
Expand All @@ -177,7 +177,7 @@ resource "keycloak_saml_user_property_protocol_mapper" "example_go_saml_firstnam
}

# see https://registry.terraform.io/providers/mrparkers/keycloak/latest/docs/resources/saml_user_property_protocol_mapper
# see https://www.keycloak.org/docs-api/24.0.2/javadocs/org/keycloak/models/UserModel.html
# see https://www.keycloak.org/docs-api/24.0.3/javadocs/org/keycloak/models/UserModel.html
resource "keycloak_saml_user_property_protocol_mapper" "example_go_saml_lastname" {
realm_id = keycloak_saml_client.example_go_saml.realm_id
client_id = keycloak_saml_client.example_go_saml.id
Expand Down

0 comments on commit 2c0cf31

Please sign in to comment.