2018-06-24 00:15:57 +02:00
|
|
|
output "target_group_http" {
|
2018-06-19 07:56:32 +02:00
|
|
|
description = "ARN of a target group of workers for HTTP traffic"
|
2018-06-22 09:28:36 +02:00
|
|
|
value = "${aws_lb_target_group.workers-http.arn}"
|
2018-06-19 07:56:32 +02:00
|
|
|
}
|
|
|
|
|
2018-06-24 00:15:57 +02:00
|
|
|
output "target_group_https" {
|
2018-06-19 07:56:32 +02:00
|
|
|
description = "ARN of a target group of workers for HTTPS traffic"
|
2018-06-22 09:28:36 +02:00
|
|
|
value = "${aws_lb_target_group.workers-https.arn}"
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|