Skip to content

Commit 53a7f0f

Browse files
committed
fix(target-group): add missing health check port configuration
Added the `port` attribute to the health check configuration for the target group to ensure proper functionality. Updated the README provider versions to reflect accurate compatibility and requirements.
1 parent 4bcfd20 commit 53a7f0f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ In order to run all checks at any point run the following command:
4343

4444
| Name | Version |
4545
|------|---------|
46-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.92.0 |
46+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.93.0 |
4747
| <a name="provider_random"></a> [random](#provider\_random) | 3.7.1 |
4848

4949
## Modules

main.tf

+1
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ resource "aws_lb_target_group" "lb_https_tgs" {
185185
enabled = var.target_group_health_check_enabled
186186
interval = var.target_group_health_check_interval
187187
path = var.target_group_health_check_path
188+
port = var.target_group_health_check_port
188189
protocol = lookup(each.value, "target_group_protocol", "HTTP")
189190
timeout = var.target_group_health_check_timeout
190191
healthy_threshold = var.target_group_health_check_healthy_threshold

0 commit comments

Comments
 (0)