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
5959| ------| -------------|
6060| <a name =" output_alb_arn " ></a > [ alb\_ arn] ( #output\_ alb\_ arn ) | ARN of the load balancer. |
6161| <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. |
6264| <a name =" output_alb_listeners_arns " ></a > [ alb\_ listeners\_ arns] ( #output\_ alb\_ listeners\_ arns ) | ARNs of the Listeners. |
6365| <a name =" output_alb_listeners_ids " ></a > [ alb\_ listeners\_ ids] ( #output\_ alb\_ listeners\_ ids ) | Identifiers of the Listeners. |
6466| <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" {
252252 )
253253 }
254254
255+ listener_rules = try (var. load_balancer . listener_rules , {})
256+
255257 tags = try (var. load_balancer . tags , {})
256258}
257259
Original file line number Diff line number Diff line change @@ -74,6 +74,16 @@ output "alb_listeners_arns" {
7474 value = try (module. alb [0 ]. listeners_arns , null )
7575}
7676
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+
7787# ###############################################################################
7888# Capacity Provider
7989# ###############################################################################
You can’t perform that action at this time.
0 commit comments