From 076829d59ef599bd47129e5e93af6196cb0f6a45 Mon Sep 17 00:00:00 2001 From: simonjj Date: Fri, 5 Jun 2026 10:29:10 -0500 Subject: [PATCH] Fix premium-ingress parameter name and default value Correct the parameter table in the premium ingress documentation: - Rename request-idle-limit to request-idle-timeout to match the actual az CLI flag - Update termination-grace-period default from n/a to 500 (the actual default) Fixes microsoft/azure-container-apps#1634 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- articles/container-apps/premium-ingress.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/articles/container-apps/premium-ingress.md b/articles/container-apps/premium-ingress.md index a7806bbc5681d..4390081148802 100644 --- a/articles/container-apps/premium-ingress.md +++ b/articles/container-apps/premium-ingress.md @@ -93,8 +93,8 @@ The following table describes the parameters you can set when configuring premiu | Parameter | Description | Default | Minimum | Maximum | |--|--|--|--|--| -| `termination-grace-period` | The time (in seconds) to allow active connections to close before terminating the ingress. | n/a | 0 | 3600 | -| `request-idle-limit` | The time (in minutes) a request can remain idle before being disconnected. | 4 | 4 | 30 | +| `termination-grace-period` | The time (in seconds) to allow active connections to close before terminating the ingress. | 500 | 0 | 3600 | +| `request-idle-timeout` | The time (in minutes) a request can remain idle before being disconnected. | 4 | 4 | 30 | | `header-count-limit` | The maximum number of HTTP headers allowed per request. | 100 | 1 | n/a |