Hello,
I have a couple of devices configured to use OpenSSH and thus something between 10 and 20 SSH-keys loaded to my keyagent. This is way beyond the OpenSSH-Server standard configuration to accept only 6 key-attempts until the agent provides the correct key.
Therefore I normally configure the other servers to accept more keys loaded by the keyagent with setting MaxAuthTries 25 (to have some flexibility for even more keys being added to my agent).
Yet for the HA implementation of the terminal app, I do not know on how to to configure this correctly. I have the standard software installed:

This is my configuration:
authorized_keys:
- >-
ssh-ed25519
A<key>a
password: ""
apks: []
server:
tcp_forwarding: false
Just adding a row with something like MaxAuthTries: 25 does not work, this is just deleted when restarting the server.
What would be the correct syntax to add this configuration to the HA OpenSSH-server?
Thanks, at least for reading!
(edit: If I remove keys from the keyagent, the connection works smoothly, so it is really only the amount of keys I need to handle)