TF code ``` resource "keycloak_openid_client" "openid_client" { realm_id = data.keycloak_realm.realm.id client_id = "xxxx" name = "xxxx" enabled = true access_type = "CONFIDENTIAL" client_authenticator_type = "client-secret" standard_flow_enabled = false implicit_flow_enabled = false direct_access_grants_enabled = false service_accounts_enabled = true valid_redirect_uris = [] web_origins = [] authorization { policy_enforcement_mode = "ENFORCING" decision_strategy = "AFFIRMATIVE" allow_remote_resource_management = "true" } } ``` After it's applied, the Keycloak console still shows `Decision strategy` as `UNANIMOUS`.  The RPT authorization result matches the `Decision strategy` in the Keycloak console.