Skip to content

Commit 46b42a3

Browse files
Merge pull request #12 from gaussb-labs/feature/output-app-subdomain-acm-arn
feat: output app subdomain ACM managed SSL cert arn
2 parents 48264c6 + 0df1e91 commit 46b42a3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ 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 |
142+
| app_target_group_arn | ARN for the application target group |
143+
| app_subdomain_acm_cert_arn| ARN for the application subdomain SSL certificate managed by ACM |
143144

144145
### License
145146
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
@@ -17,3 +17,8 @@ output "app_target_group_arn" {
1717
description = "ARN for the application target group"
1818
value = aws_lb_target_group.app.arn
1919
}
20+
21+
output "app_subdomain_acm_cert_arn" {
22+
description = "ARN for the application subdomain SSL certificate managed by ACM"
23+
value = aws_acm_certificate.app_subdomain.arn
24+
}

0 commit comments

Comments
 (0)