AWS Certificate Manager in Traefik

Hi Traefik Team,

I need to add AWS ACM Certificates in Traefik, but I am unable to see the certificate integration with services deployed in Traefik, in same EKS cluster. Could you Pls help me on this, I have an ARN(Amazon Resource Names) of the certificate.
Adding the configuration here.
Traefik version: 2.3.1

values.yaml

# Default values for Traefik

additionalArguments:
    - "--log.level=DEBUG"
    - "--providers.kubernetescrd"
    - "--entrypoints.websecure.http.tls=true"
    - "--entrypoints.websecure.http.tls.domains[0].main=MY_DOMAIN"
    - "--entrypoints.websecure.http.tls.domains[0].sans=*.MY_DOMAIN"


service:
    annotations:
        service.beta.kubernetes.io/aws-load-balancer-type: "nlb"
        service.beta.kubernetes.io/aws-load-balancer-ssl-cert: "<acm-cert-arn>"
        service.beta.kubernetes.io/aws-load-balancer-backend-protocol: "tls"
        service.beta.kubernetes.io/aws-load-balancer-ssl-ports: "443"
        service.beta.kubernetes.io/aws-load-balancer-cross-zone-load-balancing-enabled: "true"
        service.beta.kubernetes.io/aws-load-balancer-internal: "true"
    spec:
        externalTrafficPolicy: Local

I'm using the SSL termination in the NLB. What happens if you hit your URL: https://example.com:80. Do you get the default traefik certificate instead of a redirection to 443?