Skip to content

Commit 48264c6

Browse files
Merge pull request #11 from gaussb-labs/feature/output-target-group-arn
feat: output the application target group arn
2 parents dc4d9c4 + 2601e91 commit 48264c6

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ No modules.
139139
| alb_arn | ARN for the application load balancer provisioned by the module. |
140140
| alb_http_listener_arn | ARN for the application load balancer HTTP listener |
141141
| alb_https_listener_arn | ARN for the application load balancer HTTPS listener |
142+
| app_target_group_arn | ARN for the application target group |
142143

143144
### License
144145
MIT Licensed. See [LICENSE](https://github.com/gaussb-labs/terraform-aws-webapp-ingress-module/blob/main/LICENSE) for full details.

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,8 @@ output "alb_https_listener_arn" {
1212
description = "ARN for the application load balancer HTTPS listener"
1313
value = aws_lb_listener.app_https.arn
1414
}
15+
16+
output "app_target_group_arn" {
17+
description = "ARN for the application target group"
18+
value = aws_lb_target_group.app.arn
19+
}

0 commit comments

Comments
 (0)