Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
catsby committed Nov 11, 2017
1 parent 76a3ce9 commit c93f98a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions aws/resource_aws_lb_target_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,9 @@ func resourceAwsLbTargetGroupUpdate(d *schema.ResourceData, meta interface{}) er
HttpCode: aws.String(healthCheck["matcher"].(string)),
}
params.HealthCheckPath = aws.String(healthCheck["path"].(string))

params.HealthCheckIntervalSeconds = aws.Int64(int64(healthCheck["interval"].(int)))
params.UnhealthyThresholdCount = aws.Int64(int64(healthCheck["unhealthy_threshold"].(int)))
params.HealthCheckIntervalSeconds = aws.Int64(int64(healthCheck["timeout"].(int)))
params.HealthCheckTimeoutSeconds = aws.Int64(int64(healthCheck["timeout"].(int)))
}
} else {
params = &elbv2.ModifyTargetGroupInput{
Expand Down

0 comments on commit c93f98a

Please sign in to comment.