A Service Fabric Cluster in azure that is only accessible through a VPN gateway

放肆的年华 提交于 2019-12-01 01:05:05

This can be achieved with an internal load balancer. You can't do it from the portal. You have to tweak your ARM template to create an internal load balancer instead of a public load balancer. Also, at the moment you can't assign Virtual machine scalesets to a Load balancer backend address pool. But this can be achieved with ARM template as well.

Example to link your VMSS with internal load balancer - https://github.com/Azure/azure-quickstart-templates/blob/master/201-vmss-internal-loadbalancer/azuredeploy.json (line 322). Once the normal Service Fabric template creates the backend address pool, this example can be used to create an internal load balancer and assign the VMSS backend pool to internal load balancer.

And then this internal loadbalancer's IP can be used for all the communication to Service fabric Cluster.

I believe you can accomplish this by using NSG. Using the 'VIRTUAL_NETWORK' tag. Inspiration to be found here and here.

This default tag denotes all of your network address space. It includes the virtual network address space (CIDR ranges defined in Azure) as well as all connected on-premises address spaces and connected Azure VNets (local networks).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!