fix: health check protocol must be capitalized

Signed-off-by: matttrach <matt.trachier@suse.com>
This commit is contained in:
matttrach 2024-07-24 20:40:44 -05:00
parent 8a61e57d04
commit a904202a27
No known key found for this signature in database
GPG Key ID: E082F2592F87D4AE
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ resource "aws_lb_target_group" "created" {
health_check { health_check {
enabled = true enabled = true
port = each.value.port port = each.value.port
protocol = each.value.protocol protocol = upper(each.value.protocol)
} }
} }