-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathoutputs.tf
39 lines (32 loc) · 977 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
output "alb_security_group_id" {
description = "Security Group ID assigned to the ALB."
value = local.security_group
}
output "alb_target_group_id" {
description = "ID of the target group with the HTTPS listener."
value = aws_lb_target_group.https.id
}
output "alb_id" {
description = "The ID of the ALB."
value = aws_lb.main.id
}
output "alb_arn" {
description = "The ARN of the ALB."
value = aws_lb.main.arn
}
output "alb_arn_suffix" {
description = "The ARN Suffix of the ALB for use with CloudWatch Metrics."
value = aws_lb.main.arn_suffix
}
output "alb_dns_name" {
description = "DNS name of the ALB."
value = aws_lb.main.dns_name
}
output "alb_zone_id" {
description = "Route53 hosted zone ID associated with the ALB."
value = aws_lb.main.zone_id
}
output "alb_listener_arn" {
description = "The ARN associated with the HTTPS listener on the ALB."
value = aws_lb_listener.https.arn
}