7 lines
147 B
HCL
7 lines
147 B
HCL
resource "aws_lb_target_group" "target_group_web" {
|
|
name = "catherine-fc-tg"
|
|
port = 8080
|
|
protocol = "HTTP"
|
|
vpc_id = var.vpc_id
|
|
}
|