-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
47 lines (36 loc) · 880 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
output "FGTPublicIP" {
value = module.infrastructure.FGTPublicIP
}
output "Username" {
value = "admin"
}
output "Password" {
value = module.infrastructure.Password
}
output "LoadBalancerPrivateIP" {
value = module.infrastructure.LoadBalancerPrivateIP
}
output "CustomerVPC" {
value = module.infrastructure.CustomerVPC
}
output "FGTVPC" {
value = module.infrastructure.FGTVPC
}
output "customer_vpc_id" {
value = module.infrastructure.customer_vpc_id
}
output "fwsshkey" {
value = module.infrastructure.fwsshkey
}
output "csprivatesubnetaz2" {
value = module.infrastructure.csprivatesubnetaz2
}
output "csprivatesubnetaz1" {
value = module.infrastructure.csprivatesubnetaz1
}
# output "juiceshop_public_ip" {
# value = module.juiceshop.juiceshop_public_ip
# }
# output "juiceshop_private_ip" {
# value = module.juiceshop.juiceshop_private_ip
# }