Skip to content
Snippets Groups Projects
Verified Commit c53e1ad5 authored by Evangelos Foutras's avatar Evangelos Foutras :smiley_cat:
Browse files

tf-stage2: remove RegistrationProfile form action

The form action RegistrationProfile has been removed in Keycloak 23.

Relevant information from the upgrading guide [1]:

> The validation of user attributes as well as creation of the user
> including all that user’s attributes is handled by
> RegistrationUserCreation form action and hence RegistrationProfile
> is not needed anymore.

[1] https://www.keycloak.org/docs/23.0.0/upgrading/#removed-registrationprofile-form-action



Co-authored-by: default avatarKristian Klausen <kristian@klausen.dk>
parent 2b9a2ab8
No related branches found
No related tags found
No related merge requests found
Pipeline #86898 passed
...@@ -625,20 +625,12 @@ resource "keycloak_authentication_execution" "registration_user_creation" { ...@@ -625,20 +625,12 @@ resource "keycloak_authentication_execution" "registration_user_creation" {
requirement = "REQUIRED" requirement = "REQUIRED"
} }
resource "keycloak_authentication_execution" "registration_profile_action" {
realm_id = "archlinux"
parent_flow_alias = keycloak_authentication_subflow.registration_form.alias
authenticator = "registration-profile-action"
requirement = "REQUIRED"
depends_on = [keycloak_authentication_execution.registration_user_creation]
}
resource "keycloak_authentication_execution" "registration_password_action" { resource "keycloak_authentication_execution" "registration_password_action" {
realm_id = "archlinux" realm_id = "archlinux"
parent_flow_alias = keycloak_authentication_subflow.registration_form.alias parent_flow_alias = keycloak_authentication_subflow.registration_form.alias
authenticator = "registration-password-action" authenticator = "registration-password-action"
requirement = "REQUIRED" requirement = "REQUIRED"
depends_on = [keycloak_authentication_execution.registration_profile_action] depends_on = [keycloak_authentication_execution.registration_user_creation]
} }
resource "keycloak_authentication_execution" "registration_hcaptcha_action" { resource "keycloak_authentication_execution" "registration_hcaptcha_action" {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment