mTLS with dynamic cert generation with Letsencrypt

We are currently using LetsEncrypt acme generated certs in Traefik in our k8s cluster.
Is there a way to use the RequireAndVerifyClientCert TLS option on dynamically generated certs?

I tried it with generating a self signed certificate and creating a TLSOption k8s resource and pointing our ingress to it with:

annotations:
    traefik.ingress.kubernetes.io/router.tls.options: <namespace>-<TLSOption>@kubernetescrd

However I could not find a way with existing certs stored in acme.json (Without creating a new k8s resource).

Appreciate your efforts!