-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
44 lines (36 loc) · 1.01 KB
/
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
40
41
42
43
44
output "elb_security_group_id" {
description = "ARN of the ELB SG"
value = try(aws_security_group.alb[0].id, "")
}
output "lb_arn" {
description = "ARN of the ELB"
value = try(aws_lb.this[0].arn, "")
}
output "lb_listener_arn" {
description = "ARN of the ELB Listener"
value = try(aws_lb_listener.this[0].arn, "")
}
output "lb_target_group_arn" {
description = "ARN of the ELB Target Group"
value = try(aws_lb_target_group.this[0].arn, "")
}
output "lb_dns_name" {
description = "DNS Name of the ELB"
value = try(aws_lb.this[0].dns_name, "")
}
output "lb_zone_id" {
description = "Route53 Zone ID of the ELB"
value = try(aws_lb.this[0].zone_id, "")
}
output "thehive_instance_id" {
description = "Instance ID"
value = aws_instance.this.id
}
output "thehive_datavol_id" {
description = "Data Volume ID"
value = aws_ebs_volume.this.arn
}
output "thehive_instance_ip" {
description = "Instance ID"
value = aws_instance.this.private_ip
}