Regarding Hybrid Connections attaching the relevant documentation here.
What we currently have is:
(WebApp) <--> (Hybrid Connection Manager) <--> (EndPoint A)
In the configuration of Hybrid Connection we specify:
- Hybrid Connection name
- Endpoint hostname (Hostname of VM endpoint)
- Endpoint port
What we need is instead of connecting to a VM, to connect to an Azure Load Balancer which will redirect the traffic to other VMs (e.g. main traffic - EndPointA & failover - EndPointB). So:
(WebApp) <--> (Hybrid Connection Manager) <--> (Load Balancer) <--> (Endpoint A)
The question is: "Is this something feasible if we take into consideration that Load Balancer is not a VM so the connection manager (.msi) cannot be installed on Load Balancer (our new endpoint). If not what are the alternatives?"
Thanks in advance.