File tree 4 files changed +24
-1
lines changed
4 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,8 @@ resolvable from within the VPC; it is not publicly resolvable.
188
188
| ------| -------------|
189
189
| alb\_ access\_ logs\_ prefix | ALB access logs S3 prefix |
190
190
| alb\_ dns\_ name | |
191
+ | alb\_ http\_ listener\_ arn | ALB HTTPS listener ARN" |
192
+ | alb\_ https\_ listener\_ arn | ALB HTTP listener ARN, only if HTTPS forwarding is disabled |
191
193
| alb\_ route53\_ zone\_ id | |
192
194
| container\_ security\_ group\_ id | Security group id for the container. |
193
195
| ecs\_ task\_ definition\_ family | The family of the task definition defined for the given/generated container definition. |
Original file line number Diff line number Diff line change @@ -25,3 +25,13 @@ output "alb_access_logs_prefix" {
25
25
description = " ALB access logs S3 prefix"
26
26
value = local. access_logs_prefix
27
27
}
28
+
29
+ output "alb_https_listener_arn" {
30
+ description = " ALB HTTPS listener ARN"
31
+ value = aws_lb_listener. https . arn
32
+ }
33
+
34
+ output "alb_http_listener_arn" {
35
+ description = " ALB HTTP listener ARN, only if HTTPS forwarding is disabled"
36
+ value = var. disable_http_redirect ? aws_lb_listener. http . arn : null
37
+ }
Original file line number Diff line number Diff line change @@ -178,9 +178,10 @@ resolvable from within the VPC; it is not publicly resolvable.
178
178
| ------| -------------|
179
179
| alb\_ access\_ logs\_ prefix | ALB access logs S3 prefix |
180
180
| alb\_ dns\_ name | |
181
+ | alb\_ http\_ listener\_ arn | ALB HTTPS listener ARN" |
182
+ | alb\_ https\_ listener\_ arn | ALB HTTP listener ARN, only if HTTPS forwarding is disabled |
181
183
| alb\_ route53\_ zone\_ id | |
182
184
| container\_ security\_ group\_ id | Security group id for the container. |
183
185
| ecs\_ task\_ definition\_ family | The family of the task definition defined for the given/generated container definition. |
184
186
| private\_ service\_ discovery\_ domain | Domain name for service discovery, if with_service_discovery=true. Only resolvable within the VPC. |
185
-
186
187
<!-- END -->
Original file line number Diff line number Diff line change @@ -25,3 +25,13 @@ output "alb_access_logs_prefix" {
25
25
description = " ALB access logs S3 prefix"
26
26
value = local. access_logs_prefix
27
27
}
28
+
29
+ output "alb_https_listener_arn" {
30
+ description = " ALB HTTPS listener ARN"
31
+ value = aws_lb_listener. https . arn
32
+ }
33
+
34
+ output "alb_http_listener_arn" {
35
+ description = " ALB HTTP listener ARN, only if HTTPS forwarding is disabled"
36
+ value = var. disable_http_redirect ? aws_lb_listener. http . arn : null
37
+ }
You can’t perform that action at this time.
0 commit comments