Super Admin Registration

Using the superadmin-registration.conf file you can provide a list of super admin registration tokens mapped to an email and password. The super admin can be activated as explained here and login as shown here.

superadmin-registration.conf
tokens = {
    "1234567890-my-token": {
        expiration = "2029-01-01T00:00:00Z",  # Token has to be used by this expiration date
        account = {
            type = "email"
            identifier = { email = "superadmin@walt.id" }
            data = { password = "super123456" }
        }
    }
}