I try to enable TLSv1 and TLSv1.1 for one specific ingress on a AKS cluster.
By default, only TLSv1.2 is enabled.
I don't want to apply this configuration on my all cluster, just on a specific webserver service.
Regarding the documentation, I need to add this annotation if I don't want to change nginx config by ConfigMap :
nginx.ingress.kubernetes.io/proxy-ssl-protocols: TLSv1 TLSv1.1 TLSv1.2
but this has no effect.
Is it really possible to do this by annotation ?
Did I do something wrong ?
Thank you !