File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ Terraform module to deploy production-ready applications and services on an exis
59
59
| ------| -------------|
60
60
| <a name =" output_alb_arn " ></a > [ alb\_ arn] ( #output\_ alb\_ arn ) | ARN of the load balancer. |
61
61
| <a name =" output_alb_dns_name " ></a > [ alb\_ dns\_ name] ( #output\_ alb\_ dns\_ name ) | DNS name of the load balancer. |
62
+ | <a name =" output_alb_listener_rules_arns " ></a > [ alb\_ listener\_ rules\_ arns] ( #output\_ alb\_ listener\_ rules\_ arns ) | ARNs of the Listener Rules. |
63
+ | <a name =" output_alb_listener_rules_ids " ></a > [ alb\_ listener\_ rules\_ ids] ( #output\_ alb\_ listener\_ rules\_ ids ) | Identifiers of the Listener Rules. |
62
64
| <a name =" output_alb_listeners_arns " ></a > [ alb\_ listeners\_ arns] ( #output\_ alb\_ listeners\_ arns ) | ARNs of the Listeners. |
63
65
| <a name =" output_alb_listeners_ids " ></a > [ alb\_ listeners\_ ids] ( #output\_ alb\_ listeners\_ ids ) | Identifiers of the Listeners. |
64
66
| <a name =" output_alb_target_groups_arns " ></a > [ alb\_ target\_ groups\_ arns] ( #output\_ alb\_ target\_ groups\_ arns ) | ARNs of the Target Groups. |
Original file line number Diff line number Diff line change @@ -252,6 +252,8 @@ module "alb" {
252
252
)
253
253
}
254
254
255
+ listener_rules = try (var. load_balancer . listener_rules , {})
256
+
255
257
tags = try (var. load_balancer . tags , {})
256
258
}
257
259
Original file line number Diff line number Diff line change @@ -74,6 +74,16 @@ output "alb_listeners_arns" {
74
74
value = try (module. alb [0 ]. listeners_arns , null )
75
75
}
76
76
77
+ output "alb_listener_rules_ids" {
78
+ description = " Identifiers of the Listener Rules."
79
+ value = try (module. alb [0 ]. listener_rules_ids , null )
80
+ }
81
+
82
+ output "alb_listener_rules_arns" {
83
+ description = " ARNs of the Listener Rules."
84
+ value = try (module. alb [0 ]. listener_rules_arns , null )
85
+ }
86
+
77
87
# ###############################################################################
78
88
# Capacity Provider
79
89
# ###############################################################################
You can’t perform that action at this time.
0 commit comments