Skip to content
Snippets Groups Projects
Commit 249ae2a7 authored by Ira ㋡'s avatar Ira ㋡ Committed by Kristian Klausen
Browse files

Make terms and conditions required by default via terraform provider

parent 0ab630e9
No related branches found
No related tags found
No related merge requests found
......@@ -121,6 +121,14 @@ resource "keycloak_realm" "archlinux" {
}
}
resource "keycloak_required_action" "custom-terms-and-conditions" {
realm_id = "archlinux"
alias = "terms_and_conditions"
default_action = true
enabled = true
name = "Terms and Conditions"
}
resource "keycloak_required_action" "configure_otp" {
realm_id = "archlinux"
alias = "CONFIGURE_TOTP"
......
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