Skip to content

Commit

Permalink
fix(amazon): Clarify NLB healthcheck threshold requirements (#7890)
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyhebebrand authored Feb 13, 2020
1 parent 147f1a8 commit 43c6d5d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions app/scripts/modules/amazon/src/help/amazon.help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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': `
<p>Ensures that the capacity of this server group has not changed in the background (i.e. due to autoscaling activity).</p>
<p>If the capacity has changed, this resize operation will be rejected.</p>`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,10 @@ export class TargetGroups extends React.Component<ITargetGroupsProps, ITargetGro
</div>
</div>
<div className="wizard-pod-row">
<div className="wizard-pod-row-title">Healthcheck Threshold</div>
<div className="wizard-pod-row-title">
<HelpField id="aws.targetGroup.nlbHealthcheckThreshold" />{' '}
<span>Healthcheck Threshold&nbsp;</span>
</div>
<div className="wizard-pod-row-contents">
<div className="wizard-pod-row-data">
<span className="wizard-pod-content">
Expand Down

0 comments on commit 43c6d5d

Please sign in to comment.