Questions tagged [azure-application-gateway]

834 questions
0
votes
2 answers

Terraform azurerm_application_gateway configuration capacity autoscale setting

I am creating a module for configuring Azure Application Gateway with Terraform. In the azurerm_application_gateway resource, in the sku block, I see Name, tier, and capacity, but I don't see how to make this setting for what I see in the portal,…
0
votes
1 answer

A more secure way to programmatically import TLS cert for Azure Application Gateway

We're automating the creation of Azure Application Gateways for new deployments of a web app's resource group. Unfortunately AppGW doesn't seem to support Key Vault certificates directly (ref) like Azure App Service does, and it looks like the only…
0
votes
1 answer

Azure Application Gateway how to dynamically redirect based on table-data

In a sharding configuration across multiple Azure-VMs (Linux), each with its own sub-domain (wildcard *.domain.com Azure dns-zone), the gateway must parses the SUB-DOMAIN-NAME.domain.com connect attempt and access a remote Azure Table-Storage (or…
GGleGrand
  • 1,565
  • 1
  • 20
  • 45
0
votes
0 answers

Azure App Gateway to respond with 403.4 when HTTP used

Is there a way to get App Gateways (v1 or v2) to respond with 403 (or 403.4) when an HTTPS only resource is accessed through HTTP? Redirect is not desired. Right now, my requests just time out: curl -G -v "http://my-custom-domain/v1/api"…
Amir Keibi
  • 1,991
  • 28
  • 45
0
votes
1 answer

Understanding Test-AzureRmPrivateIPAddressAvailability . Application gateway Private IPs are listed as available

I'm working on a script to figure out which IPs are available for an Application Gateway if there are already Gateways in the subnet. When I use Test-AzureRmPrivateIPAddressAvailability and test an IP address that's being used by the frontend of an…
Kathrine Stack
  • 189
  • 1
  • 2
  • 14
0
votes
1 answer

Getting list of available IPs in a subnet for Application Gateway. Want Dynamic to be Static

Is there a way to get an entire list of available IPs for an Application Gateway available in a subnet? The frontent IP is dynamically assigned, but I need it to be static. BUT the IPs needs to be randomly chosed from the subnet the same way…
0
votes
1 answer

Azure Application Gateway exit IPs

We're looking to use Application Gateway as a frontend\proxy for a website we host onsite. The website has a public IP but we'd like to restrict access to the site to only traffic coming from the Application Gateway. Is there a way to determine what…
0
votes
2 answers

Creating azure application gateway with azure cli

anyone know if it is possible to create app gw with azure cli, when my vnet is in different resource group, not in the same as i'm creating the application gateway in? It seems az command doesnt let me provide --vnet-name id of vnet. If i provide…
user3702188
  • 69
  • 2
  • 9
0
votes
1 answer

Azure Application Gateway upgrade

We are going to upgrade multiple Azure Application Gateway from SKU v1, to SKU v2. From my searches in Microsofts documentation I am not able to find any such upgrade path there. I am guessing that the way to do it is to create a new one, and then…
0
votes
2 answers

Can SSL offloading be configured when using the Application Gateway Ingress Controller?

I am using the Azure Application Gateway Ingress Controller for Kubernetes. I was able to successfully configure the controller to expose my Kubernetes Services over http. However, I would like the Application Gateway to do SSL offload. So that the…
ilooner
  • 2,480
  • 15
  • 32
0
votes
1 answer

Application Gateway Broken Chain SSL Testing

The scenario is to test Broken Chain certificate. I have a Broken Chain Certificate by removing Intermediate Certificate(merged Server, Issuing, Intermediate and Root information into single .pem file, removed Intermediate information from it and…
0
votes
2 answers

Kentico Multisite Azure Application Gateway App Service MVC configuration issue - 502 error

TL:DR - How can I get the Azure Application Gateway to pass 5.xx errors from the App Service to my browser? Currently the Application Gateway swallows any 5.xx error generated by the App Service and delivers a "502 - Web server received an invalid…
Lanceomagnifico
  • 1,293
  • 15
  • 22
0
votes
1 answer

Azure Applicate gateway - none www to www redirection

We have a website build in Kentico 10 and hosted on Azure, and it has Application gateway as well. Is there any way we can do the redirection from none www to www using via Azure portal. Without using rewrite in web.config eg: like we redirect to…
KRR
  • 465
  • 3
  • 6
  • 22
0
votes
1 answer

Azure Application Gateway Redirection

I'm Trying to create the following process in Azure Application Gateway - when a user tries to access he will need to redirect to only the SSL works for me. I've tried to configure the redirection in the rule but seems that it's not responding.…
monsal
  • 533
  • 1
  • 7
  • 11
0
votes
4 answers

Is there a way to put a Public LB in front of Application Gateay?

I want to use an Azure Application Gateway with a static IP address. Since Application Gateway doesn't support public IP, I thought I'd try using a private Application Gateway and putting a public LB in front of it. However, I can't seem to find a…