From 43c6d5dcafddd3c984ff4fde163255384b90e936 Mon Sep 17 00:00:00 2001 From: caseyhebebrand Date: Thu, 13 Feb 2020 11:33:50 -0800 Subject: [PATCH] fix(amazon): Clarify NLB healthcheck threshold requirements (#7890) --- app/scripts/modules/amazon/src/help/amazon.help.ts | 2 ++ .../src/loadBalancer/configure/network/TargetGroups.tsx | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/scripts/modules/amazon/src/help/amazon.help.ts b/app/scripts/modules/amazon/src/help/amazon.help.ts index c7a106c67d3..e1fa2cf0158 100644 --- a/app/scripts/modules/amazon/src/help/amazon.help.ts +++ b/app/scripts/modules/amazon/src/help/amazon.help.ts @@ -114,6 +114,8 @@ const helpContents: { [key: string]: string } = { 'aws.targetGroup.healthCheckProtocol': 'TCP health checks only support 10s and 30s intervals', 'aws.targetGroup.healthCheckTimeout': 'Target groups with TCP or TLS protocol must have a 6s timeout for HTTP health checks or a 10s timeout for HTTPS/TLS health checks.', + 'aws.targetGroup.nlbHealthcheckThreshold': + 'The healthy and unhealthy threshold for NLBs must be equal. This represents the number of successful and failed healthchecks required for healthy and unhealthy targets, respectively.', 'aws.serverGroup.capacityConstraint': `

Ensures that the capacity of this server group has not changed in the background (i.e. due to autoscaling activity).

If the capacity has changed, this resize operation will be rejected.

`, diff --git a/app/scripts/modules/amazon/src/loadBalancer/configure/network/TargetGroups.tsx b/app/scripts/modules/amazon/src/loadBalancer/configure/network/TargetGroups.tsx index b5c9670dfd7..a200ca25aa1 100644 --- a/app/scripts/modules/amazon/src/loadBalancer/configure/network/TargetGroups.tsx +++ b/app/scripts/modules/amazon/src/loadBalancer/configure/network/TargetGroups.tsx @@ -346,7 +346,10 @@ export class TargetGroups extends React.Component
-
Healthcheck Threshold
+
+ {' '} + Healthcheck Threshold  +