atoti.KerberosConfig#
- final class atoti.KerberosConfig#
The config to delegate authentication to Kerberos.
The user’s roles can be defined using
atoti.security.Security.kerberos
andindividual_roles
.Example
>>> from pathlib import Path >>> config = tt.KerberosConfig( ... service_principal="HTTP/localhost", ... keytab=Path("config") / "example.keytab", ... krb5_config=Path("config") / "example.krb5", ... )