Skip to content

Commit fa8d75f

Browse files
Merge pull request #289338 from JackStromberg/patch-745481
Fix casing
2 parents 1b22b2d + e828d05 commit fa8d75f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/application-gateway/for-containers/custom-health-probe.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: application gateway
55
author: greg-lindsay
66
ms.service: azure-appgw-for-containers
77
ms.topic: conceptual
8-
ms.date: 9/16/2024
8+
ms.date: 10/28/2024
99
ms.author: greglin
1010
---
1111

@@ -35,7 +35,7 @@ The following properties make up custom health probes:
3535
| (http) host | The hostname specified in the request to the backend target. |
3636
| (http) path | The specific path of the request. If a single file should be loaded, the path might be /index.html. |
3737
| (http -> match) statusCodes | Contains two properties, `start` and `end`, that define the range of valid HTTP status codes returned from the backend. |
38-
| UseTLS | UseTLS indicates whether health check should enforce TLS. If not specified, health check uses the same protocol as the service if the same port is used for health check. If the port is different, health check is cleartext. |
38+
| useTLS | Specifies if the health check should enforce TLS. If not specified, health check uses the same protocol as the service if the same port is used for health check. If the port is different, health check is cleartext. |
3939

4040
[![A diagram showing the Application Gateway for Containers using custom health probes to determine backend health.](./media/custom-health-probe/custom-health-probe.png)](./media/custom-health-probe/custom-health-probe.png#lightbox)
4141

@@ -56,7 +56,7 @@ When the default health probe is used, the following values for each health prob
5656
| port | The port number used is defined by the backend port number in the Ingress resource or HttpRoute backend port in the HttpRoute resource. |
5757
| (http) host | localhost |
5858
| (http) path | / |
59-
| UseTLS | HTTP for HTTP and HTTPS when TLS is specified. |
59+
| useTLS | HTTP for HTTP and HTTPS when TLS is specified. |
6060

6161
<sup>1</sup> HTTPS is used when a backendTLSPolicy references a target backend service (for Gateway API implementation) or IngressExtension with a backendSetting protocol of HTTPS (for Ingress API implementation) is specified.
6262

@@ -96,6 +96,6 @@ spec:
9696
statusCodes:
9797
- start: 200
9898
end: 299
99-
UseTLS: true
99+
useTLS: true
100100
EOF
101101
```

0 commit comments

Comments
 (0)