The choice in the module for adding a monitor only accepts empty, basic or ntlm. When trying to add a new monitor using mtls authentication the play fails.
A 4th choice, mtls needs to be added.
I fixed this locally:
lucasheld/uptime_kuma/plugins/modules/monitor.py, line 406
The choice in the module for adding a monitor only accepts empty, basic or ntlm. When trying to add a new monitor using mtls authentication the play fails.
A 4th choice, mtls needs to be added.
I fixed this locally:
lucasheld/uptime_kuma/plugins/modules/monitor.py
, line 406From:
authMethod=dict(type="str", choices=["", "basic", "ntlm"]),
To:authMethod=dict(type="str", choices=["", "basic", "ntlm", "mtls"]),