-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
38 lines (31 loc) · 922 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
output app_instance_security_group_ids {
description = "Security groups for instances serving HTTP/HTTPS traffic"
value = [aws_security_group.private.id]
}
output aws_region {
description = "AWS region"
value = var.aws_region
}
output public_subnet_ids {
description = "Public subnet IDs"
value = aws_subnet.public.*.id
}
output private_subnet_ids {
description = "Private subnets IDs"
value = aws_subnet.private.*.id
}
output lb_target_group_http_arn {
description = "ARN of load balancer HTTP target group"
value = aws_lb_target_group.http.arn
}
# output lb_target_group_https_arn {
# description = "ARN of load balancer HTTPS target group"
# value = aws_lb_target_group.https.arn
# }
output project_tag {
description = "Tag for aws resources in this project"
value = var.project_tag
}
output public_dns_name {
value = aws_lb.vpc.dns_name
}