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"
|
2019-05-28 05:42:48 +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"
|
2019-05-28 05:42:48 +02:00
|
|
|
value = aws_lb_target_group.workers-https.arn
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
2019-05-28 05:42:48 +02:00
|
|
|
|