-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
67 lines (51 loc) · 1.57 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
output "dhcpoptionsetid" {
value = "${module.core-network-dhcp.dhcpopid}"
}
output "dhcpoptionsetassocid" {
value = "${module.core-network-dhcp.dhcpopassoid}"
}
output "publicfrontend-primary-subnetid" {
value = "${module.public-frontend-subnet-primary.subnetid}"
}
output "publicfrontend-primary-subnet-az" {
value = "${module.public-frontend-subnet-primary.subnet-az}"
}
output "publicfrontend-primary-subnet-cidr" {
value = "${module.public-frontend-subnet-primary.subnet-cidr}"
}
output "publicfrontend-secondary-subnetid" {
value = "${module.public-frontend-subnet-secondary.subnetid}"
}
output "publicfrontend-secondary-subnet-az" {
value = "${module.public-frontend-subnet-secondary.subnet-az}"
}
output "publicfrontend-secondary-subnet-cidr" {
value = "${module.public-frontend-subnet-secondary.subnet-cidr}"
}
output "private-app-subnetid" {
value = "${module.private-app-subnet.subnetid}"
}
output "private-app-subnet-cidr" {
value = "${module.private-app-subnet.subnet-cidr}"
}
output "private-app-subnet-az" {
value = "${module.private-app-subnet.subnet-az}"
}
output "private-db-subnet" {
value = "${module.private-db-subnet.subnetid}"
}
output "private-db-subnet-az" {
value = "${module.private-db-subnet.subnet-az}"
}
output "private-db-subnet-cidr" {
value = "${module.private-db-subnet.subnet-cidr}"
}
output "core-network-vpc-id" {
value = "${module.core-network-vpc.id}"
}
output "core-network-vpc-vpcarn" {
value = "${module.core-network-vpc.vpcarn}"
}
output "core-network-vpc-cidr" {
value = "${module.core-network-vpc.vpc-cidr}"
}