FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

CLC Provider

The clc provider is used to interact with the many resources supported by CenturyLinkCloud. The provider needs to be configured with account credentials before it can be used.

Use the navigation to the left to read about the available resources.

For additional documentation, see the CLC Developer Center

Example Usage

# Configure the CLC Provider
provider "clc" {
  username = "${var.clc_username}"
  password = "${var.clc_password}"
  account  = "${var.clc_account}" # optional
}

# Create a server
resource "clc_server" "node" {
    ...
}

Account Bootstrap

Trial accounts are available by signing up on the control portal https://control.ctl.io.

For new accounts, you should initially run these steps manually:

Argument Reference

The following arguments are supported:


See the source of this document at Terraform.io