forked from Azure/terraform-azurerm-loadbalancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
29 lines (24 loc) · 954 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
output "azurerm_lb_id" {
description = "the id for the azurerm_lb resource"
value = azurerm_lb.azlb.id
}
output "azurerm_lb_frontend_ip_configuration" {
description = "the frontend_ip_configuration for the azurerm_lb resource"
value = azurerm_lb.azlb.frontend_ip_configuration
}
output "azurerm_lb_probe_ids" {
description = "the ids for the azurerm_lb_probe resources"
value = flatten([for azlb in azurerm_lb_probe.azlb : azlb.id])
}
output "azurerm_lb_nat_rule_ids" {
description = "the ids for the azurerm_lb_nat_rule resources"
value = flatten([for azlb in azurerm_lb_probe.azlb : azlb.id])
}
output "azurerm_public_ips" {
description = "the id for the azurerm_lb_public_ip resource"
value = azurerm_public_ip.azlb
}
output "azurerm_lb_backend_address_pool_id" {
description = "the id for the azurerm_lb_backend_address_pool resource"
value = azurerm_lb_backend_address_pool.azlb.id
}