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

tf/keycloak: add "Configure OTP" to default actions

When signing into GitLab, opting to create a new keycloak account
results in being able to sign into GitLab without setting up OTP.

Since any subsequent login will require configuring OTP, it seems
well advised to prompt for it as part of the registration process.
parent b70fc3cf
No related branches found
No related tags found
1 merge request!581tf/keycloak: add "Configure OTP" to default actions
Pipeline #23312 passed
......@@ -138,11 +138,12 @@ resource "keycloak_required_action" "custom-terms-and-conditions" {
}
resource "keycloak_required_action" "configure_otp" {
realm_id = "archlinux"
alias = "CONFIGURE_TOTP"
enabled = true
name = "Configure OTP"
priority = 0
realm_id = "archlinux"
alias = "CONFIGURE_TOTP"
default_action = true
enabled = true
name = "Configure OTP"
priority = 0
}
resource "keycloak_required_action" "update_password" {
......
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