We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f3b4541 + b9f095e commit 76bb17bCopy full SHA for 76bb17b
outputs.tf
@@ -8,6 +8,16 @@ output "alb_id" {
8
value = "${aws_alb.main.id}"
9
}
10
11
+output "alb_listener_https_id" {
12
+ description = "The ID of the ALB Listener we created."
13
+ value = "${aws_alb_listener.frontend_https.id}"
14
+}
15
+
16
+output "alb_listener_http_id" {
17
18
+ value = "${aws_alb_listener.frontend_http.id}"
19
20
21
output "alb_zone_id" {
22
description = "The zone_id of the ALB to assist with creating DNS records."
23
value = "${aws_alb.main.zone_id}"
0 commit comments