How to handle error? You cannot change the health check interval for a target group with the TCP protocol

0

I am trying to modify a Cloudformation template. I modified the following keys for an ElasticLoadBalancingV2 TargetGroup:

...
 InternalNLBTargetGroup:
     # https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html
     Type: AWS::ElasticLoadBalancingV2::TargetGroup
     Properties:
         ...
         HealthCheckIntervalSeconds: 10
  	 HealthyThresholdCount: 2
  	 UnhealthyThresholdCount: 3
         ...
...

When I try to update my Cloudformation stack, then the update logicalId InternalNLBTargetGroup fails with status reason You cannot change the health check interval for a target group with the TCP protocol (Service: AmazonElasticLoadBalancing; Status Code: 400; Error Code: InvalidConfigurationRequest; Request ID: c46176c1-8101-4a8d-98e0-d1007c0ab019; Proxy: null)

What can I do to resolve this issue? I saw this error mentioned in the AWS docs but they didn't provide any next steps.

已提問 2 年前檢視次數 1574 次
1 個回答
1

You will need to recreate the target group with the new desired health check interval.

AWS
已回答 2 年前
profile pictureAWS
專家
已審閱 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南