ALBのListener
ALBのInput部分
ALBにトラフィックが到達したときにチェックされるporcとprotocolの組み合わせ
例えば、80とHTTPでlistenする
code:例.tf
resource "aws_lb_listener" "http" {
load_balancer_arn = aws_lb.example.arn
port = 80
protocol = "HTTP"
default_action {
type = "fixed-response"
fixed_response {
content_type = "text/plain"
message_body = "404: page not found"
status_code = 404
}
}
}