File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,12 @@ data "aws_acm_certificate" "this" {
5454}
5555
5656# TODO: need to separate into 2 resources to support logging, since network doesn't
57+ /*
58+ resource "aws_lb" "application" {
59+ count = "${module.enabled.value && var.type == "application" ? 1 : 0}"
60+ resource "aws_lb" "network" {
61+ count = "${module.enabled.value && var.type == "network" ? 1 : 0}"
62+ */
5763resource "aws_lb" "this" {
5864 count = " ${ module . enabled . value } "
5965 name = " ${ module . label . id_32 } "
@@ -235,6 +241,7 @@ resource "aws_lb_target_group" "network" {
235241 health_check {
236242 interval = " ${ var . health_check_interval } "
237243 port = " ${ var . health_check_port } "
244+ path = " /"
238245 healthy_threshold = " ${ var . health_check_healthy_threshold } "
239246 unhealthy_threshold = " ${ var . health_check_unhealthy_threshold } "
240247 protocol = " ${ var . health_check_protocol } "
You can’t perform that action at this time.
0 commit comments