-
Notifications
You must be signed in to change notification settings - Fork 5
/
outputs.tf
40 lines (33 loc) · 998 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
39
#---------------------------------------------#
# Storage outputs #
#---------------------------------------------#
output "Bucket Name" {
value = "${module.storage.bucketname}"
}
#---------------------------------------------#
# Networking outputs #
#---------------------------------------------#
output "Public Subnets" {
value = "${join(", ", module.networking.public_subnets)}"
}
output "Subnet IPs" {
value = "${join(", ", module.networking.subnet_ips)}"
}
output "Public Security Group" {
value = "${module.networking.public_sg}"
}
#---------------------------------------------#
# Compute outputs #
#---------------------------------------------#
output "Server IDs" {
value = "${module.compute.server_ids}"
}
output "Server IPs" {
value = "${module.compute.server_ips}"
}
#---------------------------------------------#
# Load Balancer outputs #
#---------------------------------------------#
# output "Load Balancer" {
# value = "${module.loadbalancer.lb_name}"
# }