We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In main.tf the health check needs var.health_check_path but this variable is not specified in variables.tf.
main.tf
var.health_check_path
variables.tf
resource "aws_lb_target_group" "target_group" { name = var.service_name port = var.container_port protocol = var.alb_target_group_protocol target_type = "ip" vpc_id = var.vpc_id deregistration_delay = var.alb_target_group_deregistration_delay health_check { enabled = false interval = var.health_check_interval path = var.health_check_path # <- Here port = var.container_port protocol = var.health_check_protocol timeout = var.health_check_timeout healthy_threshold = var.health_check_healthy_threshold unhealthy_threshold = var.health_check_unhealthy_threshold matcher = var.health_check_matcher } }
Suggestions:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
main.tf
the health check needsvar.health_check_path
but this variable is not specified invariables.tf
.Suggestions:
The text was updated successfully, but these errors were encountered: