-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoutputs.tf
29 lines (24 loc) · 829 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
output "security_group_id" {
description = "The ID of the ELB security group to attach the the LC/ASG/EC2 instance in order to be accessable by the ELB."
value = ["${aws_security_group.elb.*.id}"]
}
output "id" {
description = "The name of the ELB"
value = ["${aws_elb.elb.*.id}"]
}
output "name" {
description = "The name of the ELB"
value = ["${aws_elb.elb.*.name}"]
}
output "fqdn" {
description = "The auto-generated FQDN of the ELB."
value = ["${aws_elb.elb.*.dns_name}"]
}
output "route53_public_dns_name" {
description = "The route53 public dns name of the ELB if set."
value = "${var.route53_public_dns_name}"
}
output "route53_private_dns_name" {
description = "The route53 private dns name of the ELB if set."
value = "${var.route53_private_dns_name}"
}