» azurerm_lb_backend_address_pool
Manage a Load Balancer Backend Address Pool.
NOTE: When using this resource, the Load Balancer needs to have a FrontEnd IP Configuration Attached
» Example Usage
resource "azurerm_resource_group" "test" {
name = "LoadBalancerRG"
location = "West US"
}
resource "azurerm_public_ip" "test" {
name = "PublicIPForLB"
location = "West US"
resource_group_name = "${azurerm_resource_group.test.name}"
allocation_method = "Static"
}
resource "azurerm_lb" "test" {
name = "TestLoadBalancer"
location = "West US"
resource_group_name = "${azurerm_resource_group.test.name}"
frontend_ip_configuration {
name = "PublicIPAddress"
public_ip_address_id = "${azurerm_public_ip.test.id}"
}
}
resource "azurerm_lb_backend_address_pool" "test" {
resource_group_name = "${azurerm_resource_group.test.name}"
loadbalancer_id = "${azurerm_lb.test.id}"
name = "BackEndAddressPool"
}
» Argument Reference
The following arguments are supported:
-
name
- (Required) Specifies the name of the Backend Address Pool. -
resource_group_name
- (Required) The name of the resource group in which to create the resource. -
loadbalancer_id
- (Required) The ID of the Load Balancer in which to create the Backend Address Pool.
» Attributes Reference
The following attributes are exported:
-
id
- The ID of the Backend Address Pool. -
backend_ip_configurations
- The Backend IP Configurations associated with this Backend Address Pool. -
load_balancing_rules
- The Load Balancing Rules associated with this Backend Address Pool.
» Import
Load Balancer Backend Address Pools can be imported using the resource id
, e.g.
terraform import azurerm_lb_backend_address_pool.test /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/pool1