0
0
llucycodes42
In this code, the resource "BackEndAddressPool" is defined and its properties are set. The property name is "Name" and the property location is set to "West US". The property resource_group_name is set to "${azurerm_resource_group.test.name}" and the property loadbalancer_id is set to "${azurerm_lb.test.id}".
Shortcut: tf_azurerm_lb_backend_address_pool
resource "azurerm_lb_backend_address_pool" "${MyResource}" {
name = "BackEndAddressPool"
location = "West US"
resource_group_name = "\${azurerm_resource_group.test.name}"
loadbalancer_id = "\${azurerm_lb.test.id}"
}