Questions tagged [azure-load-balancer]

Use this tag for questions regarding the Azure Load Balancer. Azure Load Balancer distributes incoming, internal, and outgoing internet traffic.

Azure Load Balancer distributes incoming, internal, and outgoing internet traffic. It may also forward traffic to a particular port.

References:

  1. Load Balancer Documentation

  2. Load Balancer REST API

350 questions
1
vote
1 answer

Regarding Deleting public IP without effecting VM

In my current azure platform I have created vm scale set using az cli command. Then by default it created a load balancer and public ip and got associated with it. Now I want to delete this public ip, because I don't have any need with this. I am…
1
vote
1 answer

How to set up Azure Front Door (Standard/Premium) to forward HTTP requests to Static Web App

I want to be able to forward all request to an endpoint configured in Azure Front Door (e.g. mydomain.com/foo/bar) to a Static Web App (silly-name-1a2b3c.azurestaticapps.net). I need the request to be forwarded and not redirected, so basically a…
1
vote
0 answers

Redeploying service fabric cluster has error Value of property 'ShouldUseDefaultLoadBalancer' cannot be changed from 'True' to 'False'

When I redeploy the service fabric cluster with the addition of frontendConfigurations containing the loadBalancerBackendAddressPoolId and loadBalancerInboundNatPoolId properties, I getting the error: {"code":"InvalidParameter","message":"Value of…
1
vote
1 answer

Load Balancing is not working on below configuration of VMs

Created 2 Ubuntu VMs in same availability Set, region, virtual network with apache2 installed. Renamed the index.html of both the VMs to: "This is VM1", "This is VM2". Created Internal Load Balancer with the below Configuration: Front End IP…
1
vote
1 answer

In Azure, why is reserved basic public IP cheaper than dynamic basic public IP?

From here: https://azure.microsoft.com/en-us/pricing/details/ip-addresses/ Not quite sure why the reserved IP costs less? I assume this is by design, but if a student asked me why this is the case, I'd have no explanation. Anyone have any ideas or…
Nick Schroeder
  • 1,340
  • 1
  • 13
  • 17
1
vote
1 answer

Why does deploying a Kong ingress controller auto provisions a Azure load balancer in Azure Openshift kubernetes

I have created an Openshift cluster where my pods and services are running. Before creating an ingress, i deployed a Kong ingress controller that auto provisioned a Azure load balancer. From my understanding, Kong uses Nginx that can be configured…
Sana.91
  • 1,999
  • 4
  • 33
  • 52
1
vote
1 answer

Azure Kubernetes Service (AKS) - Istio Gateway: How to configure the Application Gateway in front of the Istio Gateway?

I'm attempting to configure AKS, and I've installed Istio Gateway, which interns created an Azure Load Balancer, to make the overall traffic flow to be as shown below. In my opinion, Azure Load Balancer is not required, Istio Gateway should connect…
1
vote
2 answers

How to assign public IP address from old cluster to new cluster

I just created a new AKS cluster that has to replace an old cluster. The new cluster is now ready to replace the old one, except for one crucial thing, it's outbound ip address. The address of the old cluster must be used so that our existing DNS…
1
vote
1 answer

Issue creating backend pool for Azure load balancer with private link service

I am planning to access an application hosted on two servers using azure load balancer which will be accessed using private end point and private link server from on-prem network for private access. while i try to execute the code, getting the below…
1
vote
1 answer

Terraform error argument named is not expected here for azurerm_lb

I am running below code , getting argument not expected here ,but the arguments are there in the terraform document . Please advise. variables.tf file type = list(object( { lb_name = string …
Abhishek Solanki
  • 374
  • 1
  • 14
1
vote
0 answers

Reference to undeclared resource

Azure Loadbalancer Rule Module code is like below: main.tf. resource "azurerm_lb_rule" "lb_rule" { count = length(var.lb_rule_specs) name = var.lb_rule_specs[count.index]["name"] …
1
vote
0 answers

How to deploy a KinD cluster in a docker swarm

I have deployed a docker swarm to Azure following the instructions in the quickstart guide. I also set up an ssh tunnel using the command from the quickstart: ssh -L 2375:swarm-master-0:2375 -N…
jhill072
  • 11
  • 2
1
vote
1 answer

list of map required for loabdbalancer rules specs

I have a terraform tfvars.json file as like below: { "loadbalancer_rule": { "patterns_default_loadbalancer_rule": { "backend_address_pool_id": null, "lb_rule_specs" : { "name" : "test2", "protocol":…
1
vote
1 answer

How to add Health Probe id TO LB Rule while creating using Terraform

I am trying to add a LB Rule using Terraform but unable to find a way to refer existing probe id ( Health Probe). Below is my code. resource "azurerm_lb_rule" "lb-rules" { resource_group_name = var.lb_rg loadbalancer_id …
1
vote
2 answers

Azure private link to AKS with private endpoint to another AKS cluster

I have a situation where my AKS cluster is already in place, two AKS clusters are there & they are internally available within their security zones only. I don't want to go via internet to access the internal resources within the cluster from…
Sapna
  • 635
  • 9
  • 18