Migration from traefik 2.1 > 2.2

Hello, we have just migrated to traefik v2.2, for a k8s applications that uses https we have been creating the ingress route as follows, just ensuring that this is still valid

  spec:
    entryPoints: []
    routes:
    - kind: Rule
      match: Host(`asdf.com`)
      middlewares: []
      priority: 0
      services:
      - kind: Service
        name: asdf-service
        namespace: asdf
        port: 8080
        scheme: https
    tls: {}

The only difference we use to enforce https is the addition of scheme: https