-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct README examples and add enhancement (#26)
- Loading branch information
Showing
5 changed files
with
112 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
output "azurerm_resource_group_tags" { | ||
description = "the tags provided for the resource group" | ||
value = "${azurerm_resource_group.azlb.tags}" | ||
value = data.azurerm_resource_group.azlb.tags | ||
} | ||
|
||
output "azurerm_resource_group_name" { | ||
description = "name of the resource group provisioned" | ||
value = "${azurerm_resource_group.azlb.name}" | ||
value = data.azurerm_resource_group.azlb.name | ||
} | ||
|
||
output "azurerm_lb_id" { | ||
description = "the id for the azurerm_lb resource" | ||
value = "${azurerm_lb.azlb.id}" | ||
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}" | ||
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}" | ||
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}" | ||
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}" | ||
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}" | ||
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}" | ||
value = azurerm_lb_backend_address_pool.azlb.id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters