Get information on a load balancer for use in other resources. This data source provides all of the load balancers properties as configured on your DigitalOcean account. This is useful if the load balancer in question is not managed by Terraform or you need to utilize any of the load balancers data.
An error is triggered if the provided load balancer name does not exist.
Get the load balancer by name:
data "digitalocean_loadbalancer" "example" {
name = "app"
}
output "lb_output" {
value = data.digitalocean_loadbalancer.example.ip
}
Get the load balancer by ID:
data "digitalocean_loadbalancer" "example" {
id = "loadbalancer_id"
}
The following arguments are supported:
name
- (Optional) The name of load balancer.id
- (Optional) The ID of load balancer.urn
- The uniform resource name for the Load BalancerSee the Load Balancer Resource for details on the returned attributes - they are identical.