-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
48 lines (36 loc) · 944 Bytes
/
output.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
45
46
47
48
output "aws_lb_dns" {
value = module.loadbalancer.aws_lb_dns
description = "The load balancer DNS for nginx web server"
}
# output "vpc_id" {
# value = module.vpc.vpc_id.id
# }
# output "public_subnets_id" {
# value = module.vpc.public_subnets_id[*].id
# }
# output "private_subnets_id" {
# value = module.vpc.private_subnets_id[*].id
# }
# # Security group components output
# output "lb_sg_id" {
# value = module.securitygroup.lb_sg_id[*].id
# }
# output "app_sg_id" {
# value = module.securitygroup.app_sg_id[*].id
# }
# # Application load balancer output
# output "aws_lb_id" {
# value = module.loadbalancer.aws_lb_id
# }
# output "aws_lb_name" {
# value = module.loadbalancer.aws_lb_name
# }
# output "aws_lb_tg" {
# value = module.loadbalancer.aws_lb_tg
# }
# output "aws_lb_tg_id" {
# value = module.loadbalancer.aws_lb_tg
# }
# output "aws_asg_name" {
# value = module.launchconfig.aws_asg_name
# }