I deploy a application Gateway on Azure, but Backend health say "unknown" as satus all the time.
If I request via
Get-AzureRmApplicationGatewayBackendHealth -Name $appGwName -ResourceGroupName $myRg
I receive
"BackendHttpSettings": {
"ProbeEnabled": false,
"Id": "/subscriptions/XXX"
},
"Servers": [
{
"Address": "X.X.X.X",
"Health": "Unknown"
}
]
But I did not find a way to activate the probe. I created the probe via Portal and via powershell, in both cases I run into the same Problem.
$helthProbe01 = New-AzureRmApplicationGatewayProbeConfig -Name "httpsProbe" -Protocol Https -HostName "127.0.0.1" -Path "/page/index.aspx" -Interval 30 -Timeout 60 -UnhealthyThreshold 3
How can I activate the Health probe?
Thanks Daniel