-
Notifications
You must be signed in to change notification settings - Fork 3
/
outputs.tf
34 lines (28 loc) · 938 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
// module terraform_aws_alb
// The security group ID for the alb.
output "alb_security_group_id" {
value = "${module.alb_security_group.security_group_id}"
}
// The ARN of the created Application Load Balancer.
output "alb_arn" {
value = "${aws_alb.alb.arn}"
}
// The ARN suffix of the created Application Load Balancer.
output "alb_arn_suffix" {
value = "${aws_alb.alb.arn_suffix}"
}
// The ARN of the created Application Load Balancer Listener.
output "alb_listener_arn" {
value = "${aws_alb_listener.alb_listener.arn}"
}
// The DNS name of the created Application Load Balancer.
output "alb_dns_name" {
value = "${aws_alb.alb.dns_name}"
}
// The route 53 zone ID that can be used to route alias records sets to.
//
// Note that these are not CNAMEs, but a route that allows Route 53 to
// respond to A record requests with the actual IP addresses of the ALB.
output "alb_zone_id" {
value = "${aws_alb.alb.zone_id}"
}