-
Notifications
You must be signed in to change notification settings - Fork 51
/
outputs.tf
46 lines (45 loc) · 1.57 KB
/
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
40
41
42
43
44
45
46
# Outputs
output "vnetIdHub" {
description = "Hub VNet ID"
value = module.network["hub"].vnet_id
}
output "vnetIdSpoke1" {
description = "Spoke1 VNet ID"
value = module.network["spoke1"].vnet_id
}
output "vnetIdSpoke2" {
description = "Spoke2 VNet ID"
value = module.network["spoke2"].vnet_id
}
output "bigipPublicIP" {
description = "The public ip address allocated for the BIG-IP"
value = module.bigip.*.mgmtPublicIP
}
output "bigipUserName" {
description = "The user name for the BIG-IP"
value = module.bigip.*.f5_username
}
output "bigipPassword" {
description = "The password for the BIG-IP (if dynamic_password is choosen it will be random generated password or if azure_keyvault is choosen it will be key vault secret name )"
value = module.bigip.*.bigip_password
}
output "clientPublicIP" {
description = "The public ip address allocated for the client/jumphost in Spoke 1"
value = module.client.public_ip_address
}
output "clientPrivateIP" {
description = "The private ip address allocated for the client/jumphost in Spoke 1"
value = module.client.network_interface_private_ip
}
output "appPublicIP" {
description = "The public ip address allocated for the app in Spoke 2"
value = module.app.public_ip_address
}
output "appPrivateIP" {
description = "The private ip address allocated for the webapp in Spoke 2"
value = module.app.network_interface_private_ip
}
output "bigip-private-ips" {
description = "The private ip address for BIG-IP"
value = module.bigip.*.private_addresses
}