-
Notifications
You must be signed in to change notification settings - Fork 51
/
outputs.tf
42 lines (41 loc) · 1.53 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
# Outputs
output "f5vm01_mgmt_private_ip" {
description = "f5vm01 management private IP address"
value = module.bigip.private_addresses["mgmt_private"]["private_ip"][0]
}
output "f5vm01_mgmt_public_ip" {
description = "f5vm01 management public IP address"
value = module.bigip.mgmtPublicIP
}
output "f5vm01_mgmt_pip_url" {
description = "f5vm01 management public URL"
value = "https://${module.bigip.mgmtPublicIP}"
}
output "f5vm01_ext_private_ip" {
description = "f5vm01 external primary IP address (self IP)"
value = module.bigip.private_addresses["public_private"]["private_ip"][0]
}
output "f5vm01_ext_public_ip" {
description = "f5vm01 external public IP address (self IP)"
value = module.bigip.public_addresses["external_primary_public"][0]
}
output "f5vm01_ext_secondary_ip" {
description = "f5vm01 external secondary IP address (VIP)"
value = local.vm01_vip_ips.app1.ip
}
output "f5vm01_int_private_ip" {
description = "f5vm01 internal primary IP address"
value = module.bigip.private_addresses["internal_private"]["private_ip"][0]
}
output "f5vm01_instance_ids" {
description = "f5vm01 management device name"
value = module.bigip.bigip_instance_ids
}
output "public_vip" {
description = "Public IP for the BIG-IP listener (VIP)"
value = module.bigip.public_addresses["external_secondary_public"][0]
}
output "public_vip_url" {
description = "public URL for application"
value = "http://${module.bigip.public_addresses["external_secondary_public"][0]}"
}