forked from yupwei68/terraform-azurerm-loadbalancer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
44 lines (36 loc) · 1.38 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
output "azurerm_resource_group_tags" {
description = "the tags provided for the resource group"
value = "${azurerm_resource_group.azlb.tags}"
}
output "azurerm_resource_group_name" {
description = "name of the resource group provisioned"
value = "${azurerm_resource_group.azlb.name}"
}
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 = "${azurerm_lb_probe.azlb.*.id}"
}
output "azurerm_lb_nat_rule_ids" {
description = "the ids for the azurerm_lb_nat_rule resources"
value = "${azurerm_lb_nat_rule.azlb.*.id}"
}
output "azurerm_public_ip_id" {
description = "the id for the azurerm_lb_public_ip resource"
value = "${azurerm_public_ip.azlb.*.id}"
}
output "azurerm_public_ip_address" {
description = "the ip address for the azurerm_lb_public_ip resource"
value = "${azurerm_public_ip.azlb.*.ip_address}"
}
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}"
}