Manages a Load Balancer on ProfitBricks.
resource "profitbricks_loadbalancer" "example" {
  datacenter_id = "${profitbricks_datacenter.example.id}"
  nic_ids        = ["${profitbricks_nic.example.id}"]
  name          = "load balancer name"
  dhcp          = true
}
name - (Required)[string] The name of the load balancer. datacenter_id - (Required)[string] The ID of a Virtual Data Center. nic_ids - (Required)[list] A list of NIC IDs that are part of the load balancer. dhcp - (Optional)[Boolean] Indicates if the load balancer will reserve an IP using DHCP. ip - (Optional)[string] IPv4 address of the load balancer. 
    © 2018 HashiCorpLicensed under the MPL 2.0 License.
    https://www.terraform.io/docs/providers/profitbricks/r/profitbricks_loadbalancer.html