FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

clc_load_balancer

Manages a CLC load balancer. Manage connected backends with clc_load_balancer_pool

See also Complete API documentation.

Example Usage

# Provision a load balancer
resource "clc_load_balancer" "api" {
  data_center = "${clc_group.frontends.location_id}"
  name = "api"
  description = "api load balancer"
  status = "enabled"
}

output "api_ip" {
  value = "clc_load_balancer.api.ip_address"
}

Argument Reference

The following arguments are supported:


See the source of this document at Terraform.io