1 IngressRouteTCP vs Multiple entrypoints

Hello,

I have a question about a situation I'm facing.

I would like to declare an IngressRouteTCP with multiple entrypoints. Is it possible to keep the port of the entrypoint when routing to the service ?

To illustrate it, here is my IngressRouteTCP

apiVersion: traefik.containo.us/v1alpha1
kind: IngressRouteTCP
metadata:
  name: rabbitmq
  namespace: my-ns
spec:
  entryPoints:
    - mqtt
    - amqp
    - rabbitmq-stomp
    - rabbitmq-web
  routes:
  - match: HostSNI(`mq.host.com`)
    kind: Rule
    services:
    - kind: Service
      name: rabbitmq
      namespace: my-ns
      # port: --> the port depends on the entrypoint.

I would like that the rabbitmq service is called to the same port of the entrypoint. Is it possible to do it with only one IngressRouteTCP ? or I have to do 4 different IngressRoutesTCP, one for each entrypoint ?

I hope I'm clear enough ^^.

Thanks by advance. :slight_smile: