FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

clc_group

Manages a CLC server group. Either provisions or resolves to an existing group.

See also Complete API documentation.

Example Usage

# Provision/Resolve a server group
resource "clc_group" "frontends" {
  location_id = "WA1"
  name = "frontends"
  parent = "Default Group"
}

output "group_id" {
  value = "clc_group.frontends.id"
}

Argument Reference

The following arguments are supported:

CustomFields

custom_fields is a block within the configuration that may be repeated to bind custom fields for a server. CustomFields need be set up in advance. Each custom_fields block supports the following:


See the source of this document at Terraform.io