Unable to get HTTPS routing with AWS ACM cert

Hello

I have deployed the traefik with Helm to an AWS EKS cluster with a cert provided by AWS ACM.

Here is the "Service" portion of the value.yaml

service:
  enabled: true
  type: LoadBalancer
  annotations:
    service.beta.kubernetes.io/aws-load-balancer-ssl-cert: "arn:aws:acm:region:accountid:certificate/arn",
    service.beta.kubernetes.io/aws-load-balancer-ssl-ports: "443",
    service.beta.kubernetes.io/aws-load-balancer-internal: "true",
    service.beta.kubernetes.io/aws-load-balancer-backend-protocol: "tcp"

Here is the IngressRoute for the Dashboard:

---
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
  name: dashboard
  namespace: traefik
spec:
  entryPoints:
    - web
    - websecure
  routes:
    - match: Host(`traefik.mydomain.com`)
      kind: Rule
      services:
        - name: api@internal
          kind: TraefikService

The issue is I cannot navigate to the dashboard via HTTPS only HTTP.
I am receiving 404 page not found when trying to access HTTPS. I am unable to find any information on resolving this.

Any help is appreciated. Thanks is advance!